diff --git a/Cargo.lock b/Cargo.lock index 6a08831db6..5e5023e1f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6165,18 +6165,18 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.180" +version = "1.0.182" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea67f183f058fe88a4e3ec6e2788e003840893b91bac4559cabedd00863b3ed" +checksum = "bdb30a74471f5b7a1fa299f40b4bf1be93af61116df95465b2b5fc419331e430" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.180" +version = "1.0.182" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24e744d7782b686ab3b73267ef05697159cc0e5abbed3f47f9933165e5219036" +checksum = "6f4c2c6ea4bc09b5c419012eafcdb0fcef1d9119d626c8f3a0708a5b92d38a70" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 2c871f1adb..2b6d2bd99c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -205,7 +205,7 @@ nll = { git = "https://github.com/EspressoSystems/nll.git" } num = "0.4.1" rand = "0.8.5" rand_chacha = "0.3.1" -serde = { version = "1.0.171", features = ["derive", "rc"] } +serde = { version = "1.0.182", features = ["derive", "rc"] } snafu = "0.7.5" surf-disco = { git = "https://github.com/EspressoSystems/surf-disco.git", branch = "main" } time = "0.3.23" diff --git a/centralized_server/Cargo.toml b/centralized_server/Cargo.toml index d164cd260e..6deb8a3927 100644 --- a/centralized_server/Cargo.toml +++ b/centralized_server/Cargo.toml @@ -52,7 +52,7 @@ tokio = { version = "1", optional = true, features = [ "tracing", ] } tracing = "0.1.37" -serde = { version = "1.0.171", features = ["derive"] } +serde = { version = "1.0.182", features = ["derive"] } serde_json = "1.0.103" snafu = "0.7.5" toml = "0.7.6" diff --git a/crates/hotshot-qc/Cargo.toml b/crates/hotshot-qc/Cargo.toml index 0d0e5e846d..bc812be540 100644 --- a/crates/hotshot-qc/Cargo.toml +++ b/crates/hotshot-qc/Cargo.toml @@ -24,7 +24,7 @@ hotshot-types = { path = "../../types" } jf-primitives = { git = "https://github.com/EspressoSystems/jellyfish", branch = "hotshot-compat" } jf-relation= { git = "https://github.com/EspressoSystems/jellyfish", branch = "hotshot-compat" } jf-utils = { git = "https://github.com/espressosystems/jellyfish", branch = "hotshot-compat" } -serde = { version = "1.0.164", features = ["derive"] } +serde = { version = "1.0.182", features = ["derive"] } typenum = { version = "1.16.0" } [dev-dependencies] diff --git a/libp2p-networking/Cargo.toml b/libp2p-networking/Cargo.toml index 9110a4df26..4820e04efd 100644 --- a/libp2p-networking/Cargo.toml +++ b/libp2p-networking/Cargo.toml @@ -84,7 +84,7 @@ libp2p = { version = "0.52.0", default-features = false, features = [ libp2p-noise = { version = "0.43.0", default-features = false } parking_lot = "0.12.1" rand = "0.8.5" -serde = { version = "1.0.171", features = ["derive"] } +serde = { version = "1.0.182", features = ["derive"] } serde_json = "1.0.103" snafu = "0.7.5" tokio = { version = "1", optional = true, features = [ diff --git a/task-impls/Cargo.toml b/task-impls/Cargo.toml index 611f7e76a7..32c78aca47 100644 --- a/task-impls/Cargo.toml +++ b/task-impls/Cargo.toml @@ -51,7 +51,7 @@ async-trait = "0.1.68" either = { version = "1.8.1", features = [ "serde" ] } futures = "0.3.28" nll = { git = "https://github.com/EspressoSystems/nll.git" } -serde = { version = "1.0.164", features = ["derive"] } +serde = { version = "1.0.182", features = ["derive"] } snafu = "0.7.4" tokio = { version = "1", optional = true, features = [ "fs", diff --git a/task/Cargo.toml b/task/Cargo.toml index 9d51f632bb..31c0f918b0 100644 --- a/task/Cargo.toml +++ b/task/Cargo.toml @@ -36,7 +36,7 @@ async-trait = "0.1.71" either = { version = "1.8.1", features = [ "serde" ] } futures = "0.3.28" nll = { git = "https://github.com/EspressoSystems/nll.git" } -serde = { version = "1.0.171", features = ["derive"] } +serde = { version = "1.0.182", features = ["derive"] } snafu = "0.7.5" tokio = { version = "1", optional = true, features = [ "fs", diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 786ded343a..f0afc650b3 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -92,7 +92,7 @@ tokio = { version = "1", optional = true, features = [ ] } tracing = "0.1.37" nll = { git = "https://github.com/EspressoSystems/nll.git" } -serde = { version = "1.0.171", features = ["derive"] } +serde = { version = "1.0.182", features = ["derive"] } [dev-dependencies] nll = { git = "https://github.com/EspressoSystems/nll.git" } diff --git a/types/Cargo.toml b/types/Cargo.toml index f68a715b75..4bf1759a8b 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -70,7 +70,7 @@ jf-primitives = { git = "https://github.com/EspressoSystems/jellyfish", branch = nll = { git = "https://github.com/EspressoSystems/nll.git" } libp2p-networking = { path = "../libp2p-networking", version = "0.1.0", default-features = false } rand = "0.8.5" -serde = { version = "1.0.171", features = ["derive"] } +serde = { version = "1.0.182", features = ["derive"] } snafu = "0.7.5" tagged-base64 = { git = "https://github.com/EspressoSystems/tagged-base64", tag = "0.2.4" } time = "0.3.23"