Skip to content

Commit

Permalink
Merge pull request #4 from integer32llc/crates-io-url
Browse files Browse the repository at this point in the history
Use proper crates.io registry URL
  • Loading branch information
shepmaster committed May 14, 2024
2 parents b5b370f + 0dd37a3 commit c4549df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ members = [

[workspace.dependencies]
argh = { version = "0.1.12", default-features = false }
registry-conformance = { version = "0.1.0", registry = "registry-conformance" }
registry-conformance = { version = "0.1.1", registry = "registry-conformance" }
snafu = { version = "0.8.2", default-features = false, features = ["rust_1_65", "std"] }
tokio = { version = "1.37.0", default-features = false, features = ["macros", "process", "rt-multi-thread"] }

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ mod cargo_toml {
const CONFIG_FILE_NAME: &str = "margo-config.toml";
const CRATE_DIR_NAME: &str = "crates";

const CRATES_IO_INDEX_URL: &str = "sparse+https://index.crates.io/";
const CRATES_IO_INDEX_URL: &str = "https://github.com/rust-lang/crates.io-index";

#[derive(Debug)]
struct Global {
Expand Down

0 comments on commit c4549df

Please sign in to comment.