Skip to content

Commit b336414

Browse files
jagillfacebook-github-bot
authored andcommitted
Add raw-value feature to serde-json
Reviewed By: Imxset21 Differential Revision: D80104921 fbshipit-source-id: 114efae98c0bfadb9d241fef11c2d2a6792c8a93
1 parent a54e181 commit b336414

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

compiler/crates/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ md-5 = "0.10"
1818
rayon = "1.9.0"
1919
schemars = { version = "1.0.4", features = ["indexmap2"] }
2020
serde = { version = "1.0.219", features = ["derive", "rc"] }
21-
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "unbounded_depth"] }
21+
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
2222
typetag = "0.2.15"

compiler/crates/intern/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ smallvec = { version = "1.15", features = ["serde", "union"] }
2424
[dev-dependencies]
2525
bincode = "1.3.3"
2626
rand = { version = "0.8", features = ["small_rng"] }
27-
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "unbounded_depth"] }
27+
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
2828

2929
[lints]
3030
rust = { unexpected_cfgs = { check-cfg = ["cfg(memory_consistency_assertions)"], level = "warn" } }

compiler/crates/js-config-loader/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ path = "tests/lib.rs"
1414

1515
[dependencies]
1616
serde = { version = "1.0.219", features = ["derive", "rc"] }
17-
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "unbounded_depth"] }
17+
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
1818
thiserror = "2.0.12"
1919

2020
[dev-dependencies]

compiler/crates/persist-query/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT"
1212
hyper = { version = "0.14.26", features = ["client", "http1", "http2", "stream"] }
1313
hyper-tls = "0.5"
1414
serde = { version = "1.0.219", features = ["derive", "rc"] }
15-
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "unbounded_depth"] }
15+
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
1616
thiserror = "2.0.12"
1717
url = "2.5.4"
1818

compiler/crates/relay-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ schema-validate-lib = { path = "../schema-validate" }
7070
schemars = { version = "1.0.4", features = ["indexmap2"] }
7171
serde = { version = "1.0.219", features = ["derive", "rc"] }
7272
serde_bser = "0.4"
73-
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "unbounded_depth"] }
73+
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
7474
sha1 = "0.10.5"
7575
sha2 = "0.10.6"
7676
signedsource = { path = "../signedsource" }

compiler/crates/relay-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ pathdiff = "0.2"
1818
regex = "1.11.1"
1919
schemars = { version = "1.0.4", features = ["indexmap2"] }
2020
serde = { version = "1.0.219", features = ["derive", "rc"] }
21-
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "unbounded_depth"] }
21+
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
2222
strum = { version = "0.27.1", features = ["derive"] }

compiler/crates/relay-lsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ schema-diff = { path = "../schema-diff" }
4343
schema-documentation = { path = "../schema-documentation" }
4444
schema-print = { path = "../schema-print" }
4545
serde = { version = "1.0.219", features = ["derive", "rc"] }
46-
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "unbounded_depth"] }
46+
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
4747
tokio = { version = "1.46.1", features = ["full", "test-util", "tracing"] }
4848

4949
[dev-dependencies]

0 commit comments

Comments
 (0)