about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-08-28 07:43:31 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2025-08-28 20:12:16 +1000
commitb16c66ee838ba77331cefa3e1747899978b76ff7 (patch)
treea46f5febca5445bbee1cca7baeeb88fbd2b4f424
parent20d03752c5a1c6ea4f81fcb09505977a6c945d8b (diff)
downloadrust-b16c66ee838ba77331cefa3e1747899978b76ff7.tar.gz
rust-b16c66ee838ba77331cefa3e1747899978b76ff7.zip
Add `polonius-engine` to `[workspace.dependencies]`.
-rw-r--r--Cargo.toml1
-rw-r--r--compiler/rustc_borrowck/Cargo.toml2
-rw-r--r--compiler/rustc_middle/Cargo.toml2
-rw-r--r--compiler/rustc_mir_dataflow/Cargo.toml2
4 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 69d93b7985e..01935b7daff 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -72,6 +72,7 @@ libc = "=0.2.174"
 measureme = "12.0.3"
 memchr = "2.7.5"
 odht = { version = "0.3.1", features = ["nightly"] }
+polonius-engine = "0.13.0"
 proc-macro2 = "1.0.101"
 quote = "1.0.40"
 rustc-hash = "2.1.1"
diff --git a/compiler/rustc_borrowck/Cargo.toml b/compiler/rustc_borrowck/Cargo.toml
index c0311ff414d..5f9dc41766b 100644
--- a/compiler/rustc_borrowck/Cargo.toml
+++ b/compiler/rustc_borrowck/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2024"
 # tidy-alphabetical-start
 either.workspace = true
 itertools.workspace = true
-polonius-engine = "0.13.0"
+polonius-engine.workspace = true
 rustc_abi = { path = "../rustc_abi" }
 rustc_data_structures = { path = "../rustc_data_structures" }
 rustc_errors = { path = "../rustc_errors" }
diff --git a/compiler/rustc_middle/Cargo.toml b/compiler/rustc_middle/Cargo.toml
index ae27c3bbf67..f0832405567 100644
--- a/compiler/rustc_middle/Cargo.toml
+++ b/compiler/rustc_middle/Cargo.toml
@@ -8,7 +8,7 @@ edition = "2024"
 bitflags.workspace = true
 either.workspace = true
 gsgdt = "0.1.2"
-polonius-engine = "0.13.0"
+polonius-engine.workspace = true
 rustc_abi = { path = "../rustc_abi" }
 rustc_apfloat.workspace = true
 rustc_arena = { path = "../rustc_arena" }
diff --git a/compiler/rustc_mir_dataflow/Cargo.toml b/compiler/rustc_mir_dataflow/Cargo.toml
index e422f69c7ca..11713bb77f1 100644
--- a/compiler/rustc_mir_dataflow/Cargo.toml
+++ b/compiler/rustc_mir_dataflow/Cargo.toml
@@ -5,7 +5,7 @@ edition = "2024"
 
 [dependencies]
 # tidy-alphabetical-start
-polonius-engine = "0.13.0"
+polonius-engine.workspace = true
 regex = "1"
 rustc_abi = { path = "../rustc_abi" }
 rustc_ast = { path = "../rustc_ast" }