diff --git a/Cargo.lock b/Cargo.lock index e10539f..32ce3f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -486,10 +486,11 @@ dependencies = [ [[package]] name = "deranged" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" +checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" dependencies = [ + "powerfmt", "serde", ] @@ -1475,6 +1476,12 @@ dependencies = [ "universal-hash", ] +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + [[package]] name = "ppv-lite86" version = "0.2.17" @@ -2073,12 +2080,13 @@ dependencies = [ [[package]] name = "time" -version = "0.3.29" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" +checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" dependencies = [ "deranged", "itoa", + "powerfmt", "serde", "time-core", "time-macros", diff --git a/crates/lox-distributor/Cargo.toml b/crates/lox-distributor/Cargo.toml index 2dcb720..0d48138 100644 --- a/crates/lox-distributor/Cargo.toml +++ b/crates/lox-distributor/Cargo.toml @@ -16,7 +16,7 @@ base64 = "0.21.4" hyper = { version = "0.14.27", features = ["server"] } hex_fmt = "0.3" futures = "0.3.28" -time = "0.3.29" +time = "0.3.30" tokio = { version = "1", features = ["full", "macros", "signal"] } rand = "0.8.5" reqwest = { version = "0.11", features = ["json", "stream"]} diff --git a/crates/lox-library/Cargo.toml b/crates/lox-library/Cargo.toml index f3ba442..f9a7191 100644 --- a/crates/lox-library/Cargo.toml +++ b/crates/lox-library/Cargo.toml @@ -24,7 +24,7 @@ lazy_static = "1" hex_fmt = "0.3" aes-gcm = { version = "0.10", features =["aes"]} base64 = "0.21" -time = "0.3.29" +time = "0.3.30" subtle = "2.5" thiserror = "1.0.49" zkp = { git = "https://git@gitlab.torproject.org/onyinyang/lox-zkp.git", rev = "a174be65", features = ["debug-transcript"]} diff --git a/crates/lox-wasm/Cargo.toml b/crates/lox-wasm/Cargo.toml index 34423b1..9a3c3b5 100644 --- a/crates/lox-wasm/Cargo.toml +++ b/crates/lox-wasm/Cargo.toml @@ -15,7 +15,7 @@ lazy_static = "1.4.0" lox-library = { path = "../lox-library", version = "0.1.0" } lox_utils = { path = "../lox-utils", version = "0.1.0" } wasm-bindgen = "0.2" -time = "0.3.29" +time = "0.3.30" serde_json = "1.0.107" console_error_panic_hook = "0.1.7"