From 3bf201980fdae7276897746dbe137bb2d3bfc5dd Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Thu, 12 Jun 2025 15:34:46 +0200 Subject: [PATCH] Bump jiff to 0.2. --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d350c4..f98800d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -569,16 +569,28 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "jiff" -version = "0.1.29" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c04ef77ae73f3cf50510712722f0c4e8b46f5aaa1bf5ffad2ae213e6495e78e5" +checksum = "a194df1107f33c79f4f93d02c80798520551949d59dfad22b6157048a88cca93" dependencies = [ + "jiff-static", "log", "portable-atomic", "portable-atomic-util", "serde", ] +[[package]] +name = "jiff-static" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c6e1db7ed32c6c71b759497fae34bf7933636f75a251b9e736555da426f6442" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "js-sys" version = "0.3.77" diff --git a/Cargo.toml b/Cargo.toml index a452474..42da120 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ tokio = "1.40.0" # LDNS-xxx mode specific dependencies. # TODO: put these behind a feature gate? -jiff = { version = "0.1.15", default-features = false, features = ["alloc", "std"] } +jiff = { version = "0.2", default-features = false, features = ["alloc", "std"] } # This is a workaround. lazy_static 1.0.0 fails to compile, but sharded-slab # still uses it. And sharded-slab is used by tracing-subscriber, which is