From c892a593d5587777db4417bfc65616245f78a1c7 Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Thu, 14 Nov 2024 18:21:24 -0800 Subject: [PATCH] update to latest fixpoint-supporting Salsa --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 963daadf2d913..2063ef5fd537a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3131,7 +3131,7 @@ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" [[package]] name = "salsa" version = "0.18.0" -source = "git+https://github.com/salsa-rs/salsa.git?rev=c1bbdcff28c2675f622d7e7fe10f5a0ca073f221#c1bbdcff28c2675f622d7e7fe10f5a0ca073f221" +source = "git+https://github.com/salsa-rs/salsa.git?rev=ed40196273625fcbbb55ab83625c36634353a561#ed40196273625fcbbb55ab83625c36634353a561" dependencies = [ "append-only-vec", "arc-swap", @@ -3151,12 +3151,12 @@ dependencies = [ [[package]] name = "salsa-macro-rules" version = "0.1.0" -source = "git+https://github.com/salsa-rs/salsa.git?rev=c1bbdcff28c2675f622d7e7fe10f5a0ca073f221#c1bbdcff28c2675f622d7e7fe10f5a0ca073f221" +source = "git+https://github.com/salsa-rs/salsa.git?rev=ed40196273625fcbbb55ab83625c36634353a561#ed40196273625fcbbb55ab83625c36634353a561" [[package]] name = "salsa-macros" version = "0.18.0" -source = "git+https://github.com/salsa-rs/salsa.git?rev=c1bbdcff28c2675f622d7e7fe10f5a0ca073f221#c1bbdcff28c2675f622d7e7fe10f5a0ca073f221" +source = "git+https://github.com/salsa-rs/salsa.git?rev=ed40196273625fcbbb55ab83625c36634353a561#ed40196273625fcbbb55ab83625c36634353a561" dependencies = [ "heck", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index ab5635232e153..67a08e6fe58ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -117,7 +117,7 @@ rand = { version = "0.8.5" } rayon = { version = "1.10.0" } regex = { version = "1.10.2" } rustc-hash = { version = "2.0.0" } -salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "c1bbdcff28c2675f622d7e7fe10f5a0ca073f221" } +salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "ed40196273625fcbbb55ab83625c36634353a561" } schemars = { version = "0.8.16" } seahash = { version = "4.1.0" } serde = { version = "1.0.197", features = ["derive"] }