about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-08-22 13:07:23 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2025-08-27 14:21:21 +1000
commit200f56d605e4e6cfad4ee4ef461a26c9c6a90f3d (patch)
tree701ee5e2af3bf63e169bee9bae612229373fb920 /src
parentc50d2cc8078280a0dfdd562c7688e81b664e5880 (diff)
downloadrust-200f56d605e4e6cfad4ee4ef461a26c9c6a90f3d.tar.gz
rust-200f56d605e4e6cfad4ee4ef461a26c9c6a90f3d.zip
Add `itertools` to `[workspace.dependencies]`.
Diffstat (limited to 'src')
-rw-r--r--src/librustdoc/Cargo.toml2
-rw-r--r--src/tools/coverage-dump/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml
index 60958633bed..02a3a4e0de4 100644
--- a/src/librustdoc/Cargo.toml
+++ b/src/librustdoc/Cargo.toml
@@ -13,7 +13,7 @@ arrayvec = { version = "0.7", default-features = false }
 askama = { version = "0.14", default-features = false, features = ["alloc", "config", "derive"] }
 base64 = "0.21.7"
 indexmap = "2"
-itertools = "0.12"
+itertools.workspace = true
 minifier = { version = "0.3.5", default-features = false }
 pulldown-cmark-escape = { version = "0.11.0", features = ["simd"] }
 regex = "1"
diff --git a/src/tools/coverage-dump/Cargo.toml b/src/tools/coverage-dump/Cargo.toml
index 36a66f16030..2f703537b59 100644
--- a/src/tools/coverage-dump/Cargo.toml
+++ b/src/tools/coverage-dump/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2021"
 
 [dependencies]
 anyhow = "1.0.71"
-itertools = "0.12"
+itertools.workspace = true
 leb128 = "0.2.5"
 md5 = { package = "md-5" , version = "0.10.5" }
 miniz_oxide = "0.8.8"