summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-10-25 03:52:15 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-10-25 03:52:15 -0400
commit9fee710a03b8759c9d3175e2f77505a5925e0988 (patch)
treeaeaee51432af40cddf3a6c2ec9834cf02016d410
parentf05c1e92ad51edb4c6971e52f8344fdf8681afee (diff)
downloadgentoo-utils-9fee710a03b8759c9d3175e2f77505a5925e0988.tar.gz
add itertools dependency
-rw-r--r--Cargo.lock16
-rw-r--r--Cargo.toml3
2 files changed, 18 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 45e8f1e..85cff95 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,10 +3,17 @@
version = 4
[[package]]
+name = "either"
+version = "1.15.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
+
+[[package]]
name = "gentoo-utils"
version = "0.1.0"
dependencies = [
"get",
+ "itertools",
"mon",
]
@@ -20,6 +27,15 @@ dependencies = [
]
[[package]]
+name = "itertools"
+version = "0.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
+dependencies = [
+ "either",
+]
+
+[[package]]
name = "mon"
version = "0.1.0"
diff --git a/Cargo.toml b/Cargo.toml
index 0560fe5..0f3802f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,4 +5,5 @@ edition = "2024"
[dependencies]
mon = { path = "../mon" }
-get = { path = "../get" } \ No newline at end of file
+get = { path = "../get" }
+itertools = "0.14.0" \ No newline at end of file