diff --git a/Cargo.lock b/Cargo.lock index 26e12f2..125bc8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1920,9 +1920,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.5.0" +version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f58c3a1b3e418f61c25b2aeb43fc6c95eaa252b8cecdda67f401943e9e08d33f" +checksum = "f5c9fdb6b00a489875b22efd4b78fe2b363b72265cc5f6eb2e2b9ee270e6140c" dependencies = [ "base64", "chrono", @@ -1937,9 +1937,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.5.0" +version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2068b437a31fc68f25dd7edc296b078f04b45145c199d8eed9866e45f1ff274" +checksum = "dbff351eb4b33600a2e138dfa0b10b65a238ea8ff8fb2387c422c5022a3e8298" dependencies = [ "darling", "proc-macro2", diff --git a/crates/lox-distributor/Cargo.toml b/crates/lox-distributor/Cargo.toml index f24c1fa..9194353 100644 --- a/crates/lox-distributor/Cargo.toml +++ b/crates/lox-distributor/Cargo.toml @@ -25,7 +25,7 @@ tokio = { version = "1", features = ["full", "macros", "signal"] } rand = "0.8.5" reqwest = { version = "0.11", features = ["json", "stream"]} serde = { version = "1.0", features = ["derive", "rc"] } -serde_with = "3.5.0" +serde_with = "3.5.1" lox-zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp", version = "0.8.0" } lox-library = { path = "../lox-library", version = "0.1.0"} lox_utils = { path = "../lox-utils", version = "0.1.0"} diff --git a/crates/lox-library/Cargo.toml b/crates/lox-library/Cargo.toml index d75822c..d7c3a41 100644 --- a/crates/lox-library/Cargo.toml +++ b/crates/lox-library/Cargo.toml @@ -20,7 +20,7 @@ bincode = "1" chrono = "0.4" rand = { version = "0.8", features = ["std_rng"]} serde = "1.0.195" -serde_with = {version = "3.5.0", features = ["json"]} +serde_with = {version = "3.5.1", features = ["json"]} sha2 = "0.10" statistical = "1.0.0" lazy_static = "1" diff --git a/crates/lox-utils/Cargo.toml b/crates/lox-utils/Cargo.toml index 38bc2c0..e42e114 100644 --- a/crates/lox-utils/Cargo.toml +++ b/crates/lox-utils/Cargo.toml @@ -16,7 +16,7 @@ chrono = { version = "0.4.31", features = ["serde", "clock"] } lox-library = {path = "../lox-library", version = "0.1.0"} serde = "1" serde_json = "1.0.108" -serde_with = "3.5.0" +serde_with = "3.5.1" [features]