Skip to content

Commit

Permalink
Update serde and serde_json
Browse files Browse the repository at this point in the history
Reviewed By: zertosh

Differential Revision: D47316922

fbshipit-source-id: bc9c0b407d27fee3d590e456d4ddba34e0228f34
  • Loading branch information
David Tolnay authored and facebook-github-bot committed Jul 8, 2023
1 parent 235b392 commit 9b68b6d
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions compiler/crates/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ log = { version = "0.4.17", features = ["kv_unstable", "kv_unstable_std"] }
lsp-types = "0.93.2"
md-5 = "0.10"
rayon = "1.2"
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
2 changes: 1 addition & 1 deletion compiler/crates/docblock-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ path = "tests/parse_test.rs"
[dependencies]
common = { path = "../common" }
intern = { path = "../intern" }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
thiserror = "1.0.36"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/graphql-ir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ intern = { path = "../intern" }
lazy_static = "1.4"
once_cell = "1.12"
schema = { path = "../schema" }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
thiserror = "1.0.36"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/graphql-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ path = "tests/print_test.rs"
common = { path = "../common" }
intern = { path = "../intern" }
logos = "0.12"
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
thiserror = "1.0.36"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/graphql-watchman/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ license = "MIT"

[dependencies]
log = { version = "0.4.17", features = ["kv_unstable", "kv_unstable_std"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_bser = "0.3"
watchman_client = "0.8.0"
6 changes: 3 additions & 3 deletions compiler/crates/intern/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ hashbrown = { version = "0.12.3", features = ["raw", "serde"] }
indexmap = { version = "1.9.2", features = ["arbitrary", "rayon", "serde-1"] }
once_cell = "1.12"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_bytes = "0.11"
serde_derive = "1.0"
serde_derive = "1.0.167"
smallvec = { version = "1.6.1", features = ["serde", "union"] }

[dev-dependencies]
bincode = "1.3.3"
rand = { version = "0.8", features = ["small_rng"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
2 changes: 1 addition & 1 deletion compiler/crates/interner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ fnv = "1.0"
lazy_static = "1.4"
once_cell = "1.12"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
4 changes: 2 additions & 2 deletions compiler/crates/js-config-loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ name = "tests"
path = "tests/lib.rs"

[dependencies]
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
thiserror = "1.0.36"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions compiler/crates/persist-query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ license = "MIT"
[dependencies]
hyper = { version = "0.14.26", features = ["client", "http1", "http2", "stream"] }
hyper-tls = "0.5"
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
thiserror = "1.0.36"
url = "2.2.2"

Expand Down
4 changes: 2 additions & 2 deletions compiler/crates/relay-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ relay-transforms = { path = "../relay-transforms" }
relay-typegen = { path = "../relay-typegen" }
schema = { path = "../schema" }
schema-diff = { path = "../schema-diff" }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_bser = "0.3"
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
sha1 = "0.10.5"
sha2 = "0.10.6"
signedsource = { path = "../signedsource" }
Expand Down
4 changes: 2 additions & 2 deletions compiler/crates/relay-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ indexmap = { version = "1.9.2", features = ["arbitrary", "rayon", "serde-1"] }
intern = { path = "../intern" }
pathdiff = "0.2"
regex = "1.6.0"
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
strum = { version = "0.24", features = ["derive"] }
4 changes: 2 additions & 2 deletions compiler/crates/relay-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ resolution-path = { path = "../resolution-path" }
schema = { path = "../schema" }
schema-documentation = { path = "../schema-documentation" }
schema-print = { path = "../schema-print" }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
serde = { version = "1.0.167", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
Expand Down

0 comments on commit 9b68b6d

Please sign in to comment.