diff --git a/Cargo.lock b/Cargo.lock index 7b7418e8e2..70c79d14a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1697,9 +1697,9 @@ dependencies = [ [[package]] name = "inventory" -version = "0.3.21" +version = "0.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e" +checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b" dependencies = [ "rustversion", ] @@ -3673,7 +3673,8 @@ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "salsa" version = "0.26.1" -source = "git+https://github.com/salsa-rs/salsa.git?rev=2f687a17ceea8ec7aaa605561ccbde938ccef086#2f687a17ceea8ec7aaa605561ccbde938ccef086" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a07bc2a7df3f8e2306434a172a694d44d14fda738d08aad5f2f7f747d2f06fdc" dependencies = [ "boxcar", "compact_str", @@ -3698,12 +3699,14 @@ dependencies = [ [[package]] name = "salsa-macro-rules" version = "0.26.1" -source = "git+https://github.com/salsa-rs/salsa.git?rev=2f687a17ceea8ec7aaa605561ccbde938ccef086#2f687a17ceea8ec7aaa605561ccbde938ccef086" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec256ece77895f4a8d624cecc133dd798c7961a861439740b1c7410a613ee7ba" [[package]] name = "salsa-macros" version = "0.26.1" -source = "git+https://github.com/salsa-rs/salsa.git?rev=2f687a17ceea8ec7aaa605561ccbde938ccef086#2f687a17ceea8ec7aaa605561ccbde938ccef086" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "978e5d5c9533ce19b6a58ad91024e1d136f6eec83c4ba98b5ce94c87986c41d8" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index a79f975e76..c50a761e42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -157,7 +157,7 @@ regex-syntax = { version = "0.8.8" } rustc-hash = { version = "2.0.0" } rustc-stable-hash = { version = "0.1.2" } # When updating salsa, make sure to also update the revision in `fuzz/Cargo.toml` -salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "2f687a17ceea8ec7aaa605561ccbde938ccef086", default-features = false, features = [ +salsa = { version="0.26.1", default-features = false, features = [ "compact_str", "macros", "salsa_unstable", diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 83ca4551b4..d0a94dbcf9 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -33,7 +33,7 @@ ty_site_packages = { path = "../crates/ty_site_packages" } ty_python_core = { path = "../crates/ty_python_core" } libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer", default-features = false } -salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "2f687a17ceea8ec7aaa605561ccbde938ccef086", default-features = false, features = [ +salsa = { version="0.26.1", default-features = false, features = [ "compact_str", "macros", "salsa_unstable",