From f8ec993401aaeb25f96b6f752ea8095bf5213af6 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 2 May 2023 14:50:53 -0600 Subject: [PATCH] rust/time: add note why this needs to be pinned --- rust/Cargo.toml.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index b2d0740fc4..9e73ac0fef 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -60,10 +60,13 @@ md-5 = "~0.10.1" regex = "~1.5.5" lazy_static = "~1.4.0" base64 = "~0.13.0" -time = "=0.3.13" bendy = { version = "~0.3.3", default-features = false } asn1-rs = { version = "~0.5.2" } +# The time crate has a policy of supporting Rust versions up to 6 +# month olds, so it needs to be pinned even at the patch level. +time = "=0.3.13" + suricata-derive = { path = "./derive" } [dev-dependencies] -- 2.47.2