From 74c3ee6e46e29780f4feb34b24cd37265206f1ea Mon Sep 17 00:00:00 2001 From: Adrian Enache Date: Thu, 31 Oct 2024 16:04:02 -0700 Subject: [PATCH] update serde 1.0.203->1.0.214, serde_json 1.0.125->1.0.132 Summary: - fix some cfg for serde_json which changed in the meantime Reviewed By: dtolnay Differential Revision: D65182502 fbshipit-source-id: 9234db3ca89334552a0e12ac7e90b59b0bdf2897 --- shed/cached_config/Cargo.toml | 2 +- shed/chrome_trace/Cargo.toml | 2 +- shed/justknobs_stub/Cargo.toml | 2 +- shed/scuba_sample/Cargo.toml | 2 +- shed/scuba_sample/derive_tests/Cargo.toml | 2 +- shed/secure_utils/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/shed/cached_config/Cargo.toml b/shed/cached_config/Cargo.toml index e6ba2c1b..faec5183 100644 --- a/shed/cached_config/Cargo.toml +++ b/shed/cached_config/Cargo.toml @@ -17,7 +17,7 @@ chrono = { version = "0.4", features = ["clock", "serde", "std"], default-featur fbinit = { version = "0.2.0", path = "../fbinit" } fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" } serde = { version = "1.0.185", features = ["derive", "rc"] } -serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] } +serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] } slog = { version = "2.7", features = ["max_level_trace", "nested-values"] } tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] } diff --git a/shed/chrome_trace/Cargo.toml b/shed/chrome_trace/Cargo.toml index f50c83d8..8960216c 100644 --- a/shed/chrome_trace/Cargo.toml +++ b/shed/chrome_trace/Cargo.toml @@ -16,7 +16,7 @@ bytes = { version = "1.6.0", features = ["serde"] } flate2 = { version = "1.0.33", features = ["rust_backend"], default-features = false } libc = "0.2.139" serde = { version = "1.0.185", features = ["derive", "rc"] } -serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] } +serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] } zstd = { version = "0.13", features = ["experimental", "zstdmt"] } [dev-dependencies] diff --git a/shed/justknobs_stub/Cargo.toml b/shed/justknobs_stub/Cargo.toml index db4cd247..b47c64fd 100644 --- a/shed/justknobs_stub/Cargo.toml +++ b/shed/justknobs_stub/Cargo.toml @@ -21,7 +21,7 @@ cached_config = { version = "0.1.0", path = "../cached_config" } futures = { version = "0.3.30", features = ["async-await", "compat"] } just_knobs_struct = { version = "0.1.0", path = "cached_config_thrift_struct" } serde = { version = "1.0.185", features = ["derive", "rc"] } -serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] } +serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] } slog = { version = "2.7", features = ["max_level_trace", "nested-values"] } tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] } diff --git a/shed/scuba_sample/Cargo.toml b/shed/scuba_sample/Cargo.toml index b01d01ef..760da595 100644 --- a/shed/scuba_sample/Cargo.toml +++ b/shed/scuba_sample/Cargo.toml @@ -15,7 +15,7 @@ fbinit = { version = "0.2.0", path = "../fbinit" } rand = { version = "0.8", features = ["small_rng"] } scuba_sample_derive = { version = "0.1.0", path = "derive" } serde = { version = "1.0.185", features = ["derive", "rc"] } -serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] } +serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] } thiserror = "1.0.64" [dev-dependencies] diff --git a/shed/scuba_sample/derive_tests/Cargo.toml b/shed/scuba_sample/derive_tests/Cargo.toml index c473a5d3..d02b0eaf 100644 --- a/shed/scuba_sample/derive_tests/Cargo.toml +++ b/shed/scuba_sample/derive_tests/Cargo.toml @@ -16,4 +16,4 @@ path = "test.rs" [dev-dependencies] scuba_sample = { version = "0.1.0", path = ".." } -serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] } +serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] } diff --git a/shed/secure_utils/Cargo.toml b/shed/secure_utils/Cargo.toml index 59f5aff5..b44c0278 100644 --- a/shed/secure_utils/Cargo.toml +++ b/shed/secure_utils/Cargo.toml @@ -17,7 +17,7 @@ libc = "0.2.139" openssl = "0.10.63" openssl-sys = "0.9.99" serde = { version = "1.0.185", features = ["derive", "rc"] } -serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] } +serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] } slog = { version = "2.7", features = ["max_level_trace", "nested-values"] } [lints]