diff --git a/Cargo.lock b/Cargo.lock index 9acb2d7..2a1be5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -822,10 +822,11 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "jiff" -version = "0.2.1" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3590fea8e9e22d449600c9bbd481a8163bef223e4ff938e5f55899f8cf1adb93" +checksum = "5c163c633eb184a4ad2a5e7a5dacf12a58c830d717a7963563d4eceb4ced079f" dependencies = [ + "jiff-static", "jiff-tzdb-platform", "log", "portable-atomic", @@ -834,6 +835,17 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "jiff-static" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbc3e0019b0f5f43038cf46471b1312136f29e36f54436c6042c8f155fec8789" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "jiff-tzdb" version = "0.1.2" diff --git a/Cargo.toml b/Cargo.toml index 618defc..f228c21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -159,7 +159,7 @@ futures-util = "0.3.31" globset = { version = "0.4.15", features = ["serde"] } heck = "0.5.0" http = "1.2.0" -jiff = { version = "0.2.1", features = ["default", "serde"] } +jiff = { version = "0.2.3", features = ["default", "serde"] } jiter = { version = "0.8.2", features = ["python"] } regex = "1.11.1" reqwest = { version = "0.12.12", features = ["blocking", "brotli", "charset", "cookies", "deflate", "gzip", "http2", "macos-system-configuration", "rustls-tls-native-roots", "stream", "zstd"], default-features = false }