Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli: Add itertools dependency
Matthias Beyer committed 8 months ago
commit 229c4ea3c5ad42c7745f9de4fa915cc0d4359000
parent 1a317ae8e4e667fb1a832ae9c7473896e15cf581
3 files changed +12 -0
modified Cargo.lock
@@ -1862,6 +1862,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 = "itoa"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2714,6 +2723,7 @@ dependencies = [
 "dunce",
 "git-ref-format",
 "human-panic",
+
 "itertools",
 "lexopt",
 "localtime",
 "log",
modified Cargo.toml
@@ -30,6 +30,7 @@ dunce = "1.0.5"
fastrand = { version = "2.0.0", default-features = false }
git2 = { version = "0.19.0", default-features = false }
human-panic = "2"
+
itertools = "0.14"
lexopt = "0.3.0"
libc = "0.2.137"
localtime = "1.2.0"
modified crates/radicle-cli/Cargo.toml
@@ -19,6 +19,7 @@ chrono = { workspace = true, features = ["clock", "std"] }
dunce = { workspace = true }
git-ref-format = { version = "0.3.0", features = ["macro"] }
human-panic.workspace = true
+
itertools.workspace = true
lexopt = { workspace = true }
localtime = { workspace = true }
log = { workspace = true, features = ["std"] }