]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
rust: unpin once_cell from old version
authorJason Ish <jason.ish@oisf.net>
Thu, 5 Jun 2025 17:04:23 +0000 (11:04 -0600)
committerVictor Julien <victor@inliniac.net>
Fri, 6 Jun 2025 18:08:47 +0000 (20:08 +0200)
We can now update to the current version of once_cell with Rust 1.75.

rust/Cargo.lock.in
rust/suricatactl/Cargo.toml.in
rust/suricatasc/Cargo.toml.in

index 7e161b64656c12a8ebb8a161912829508b3ab422..b9742192c928aefe1c1b184dcee2c10adfc2be77 100644 (file)
@@ -1019,9 +1019,9 @@ dependencies = [
 
 [[package]]
 name = "once_cell"
-version = "1.20.3"
+version = "1.21.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
+checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
 
 [[package]]
 name = "opaque-debug"
index 711332d1df9ab6aaf1bc7c7918de6a40a73005d3..6e661694945e0043d6825a23f5107f7b9f171f35 100644 (file)
@@ -12,9 +12,8 @@ name = "suricatactl"
 regex = "~1.5.5"
 tracing = "0.1"
 tracing-subscriber = "0.3"
+once_cell = { version = "1.21.3" }
 
 # 4.0 is the newest version that builds with Rust 1.67.1.
 clap = { version = "=4.2.0", default-features = false, features = ["std", "derive", "help", "usage"] }
 
-# Pin once_cell otherwise clap will pull in v1.21.0 which requires Rust 1.70+.
-once_cell = { version = "=1.20.3" }
index 9645a4c1075535f2489ec30ef2bed4f2c404fed0..483645f0a8f1dd28bce0392a66917590273614a1 100644 (file)
@@ -13,8 +13,7 @@ name = "suricatasc"
 # 4.0 is the newest version that builds with Rust 1.67.1.
 clap = { version = "=4.2.0", default-features = false, features = ["std", "derive", "help", "usage"] }
 
-# Pin once_cell otherwise clap will pull in v1.21.0 which requires Rust 1.70+.
-once_cell = { version = "=1.20.3" }
+once_cell = { version = "1.21.3" }
 
 # Need to pin back for Rust 1.67.1
 rustyline = { version = "=11.0.0" }