From 60a47c962f8529a27b3bb9636b151750e0cb2bb0 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 22 Jan 2024 15:30:55 +0000 Subject: [PATCH] Update Rust crate serde_with to 3.5.0 --- Cargo.lock | 8 ++++---- crates/lox-distributor/Cargo.toml | 2 +- crates/lox-library/Cargo.toml | 2 +- crates/lox-utils/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 71089f3..3544b82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1919,9 +1919,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.4.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23" +checksum = "f58c3a1b3e418f61c25b2aeb43fc6c95eaa252b8cecdda67f401943e9e08d33f" dependencies = [ "base64", "chrono", @@ -1936,9 +1936,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.4.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788" +checksum = "d2068b437a31fc68f25dd7edc296b078f04b45145c199d8eed9866e45f1ff274" dependencies = [ "darling", "proc-macro2", diff --git a/crates/lox-distributor/Cargo.toml b/crates/lox-distributor/Cargo.toml index 4b138ca..f24c1fa 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.4.0" +serde_with = "3.5.0" 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 d7db1e4..d75822c 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.4.0", features = ["json"]} +serde_with = {version = "3.5.0", 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 23fe66c..bdc4ec9 100644 --- a/crates/lox-utils/Cargo.toml +++ b/crates/lox-utils/Cargo.toml @@ -15,7 +15,7 @@ repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox.git/" lox-library = {path = "../lox-library", version = "0.1.0"} serde = "1" serde_json = "1.0.108" -serde_with = "3.4.0" +serde_with = "3.5.0" [features]