Skip to content

Commit

Permalink
Upgrade dependencies used by streampager
Browse files Browse the repository at this point in the history
Reviewed By: zzl0

Differential Revision: D69427081

fbshipit-source-id: f520721fd4b828ae46c6b2d7875fa68eaafe603e
  • Loading branch information
quark-zju authored and facebook-github-bot committed Feb 13, 2025
1 parent 46d062c commit de6da29
Show file tree
Hide file tree
Showing 20 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion compiler/crates/docblock-shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ license = "MIT"
common = { path = "../common" }
hex = "0.4.3"
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
md-5 = "0.10"
serde = { version = "1.0.185", features = ["derive", "rc"] }
2 changes: 1 addition & 1 deletion compiler/crates/fixture-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ path = "tests/uppercase_test.rs"
clap = { version = "4.5.20", features = ["derive", "env", "string", "unicode", "wrap_help"] }
colored = "2.1.0"
diff = "0.1"
lazy_static = "1.4"
lazy_static = "1.5"
signedsource = { path = "../signedsource" }
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion compiler/crates/graphql-ir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fnv = "1.0"
graphql-syntax = { path = "../graphql-syntax" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
once_cell = "1.12"
schema = { path = "../schema" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/intern/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ schemars = { version = "0.8.21", features = ["indexmap2"] }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_bytes = "0.11"
serde_derive = "1.0.185"
smallvec = { version = "1.6.1", features = ["serde", "union"] }
smallvec = { version = "1.13.2", features = ["serde", "union"] }

[dev-dependencies]
bincode = "1.3.3"
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/interner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT"

[dependencies]
fnv = "1.0"
lazy_static = "1.4"
lazy_static = "1.5"
once_cell = "1.12"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
serde = { version = "1.0.185", features = ["derive", "rc"] }
2 changes: 1 addition & 1 deletion compiler/crates/js-config-loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_de
thiserror = "2"

[dev-dependencies]
tempfile = "3.8"
tempfile = "3.15"
2 changes: 1 addition & 1 deletion compiler/crates/relay-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ graphql-syntax = { path = "../graphql-syntax" }
hex = "0.4.3"
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
md-5 = "0.10"
relay-config = { path = "../relay-config" }
relay-transforms = { path = "../relay-transforms" }
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 @@ -49,13 +49,13 @@ hex = "0.4.3"
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
intern = { path = "../intern" }
js-config-loader = { path = "../js-config-loader" }
lazy_static = "1.4"
lazy_static = "1.5"
log = { version = "0.4.22", features = ["kv_unstable"] }
md-5 = "0.10"
persist-query = { path = "../persist-query" }
petgraph = { version = "0.6.3", features = ["serde-1"] }
rayon = "1.9.0"
regex = "1.9.2"
regex = "1.11.1"
relay-codegen = { path = "../relay-codegen" }
relay-config = { path = "../relay-config" }
relay-docblock = { path = "../relay-docblock" }
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/relay-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ globset = { version = "0.4.13", features = ["serde1"] }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
intern = { path = "../intern" }
pathdiff = "0.2"
regex = "1.9.2"
regex = "1.11.1"
schemars = { version = "0.8.21", features = ["indexmap2"] }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] }
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/relay-docblock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ errors = { path = "../errors" }
graphql-ir = { path = "../graphql-ir" }
graphql-syntax = { path = "../graphql-syntax" }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
relay-config = { path = "../relay-config" }
relay-schema = { path = "../relay-schema" }
schema = { path = "../schema" }
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/relay-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ graphql-text-printer = { path = "../graphql-text-printer" }
graphql-watchman = { path = "../graphql-watchman" }
intern = { path = "../intern" }
itertools = "0.14.0"
lazy_static = "1.4"
lazy_static = "1.5"
log = { version = "0.4.22", features = ["kv_unstable"] }
lsp-server = "0.7.2"
lsp-types = "0.94.1"
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/relay-schema-generation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ hermes_estree = { git = "https://github.com/facebook/hermes.git" }
hermes_parser = { git = "https://github.com/facebook/hermes.git" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
relay-config = { path = "../relay-config" }
relay-docblock = { path = "../relay-docblock" }
rustc-hash = "2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/relay-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ common = { path = "../common" }
docblock-shared = { path = "../docblock-shared" }
graphql-syntax = { path = "../graphql-syntax" }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
schema = { path = "../schema" }
2 changes: 1 addition & 1 deletion compiler/crates/relay-test-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ license = "MIT"

[dependencies]
common = { path = "../common" }
lazy_static = "1.4"
lazy_static = "1.5"
relay-schema = { path = "../relay-schema" }
schema = { path = "../schema" }
4 changes: 2 additions & 2 deletions compiler/crates/relay-transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ graphql-text-printer = { path = "../graphql-text-printer" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
intern = { path = "../intern" }
itertools = "0.14.0"
lazy_static = "1.4"
lazy_static = "1.5"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
regex = "1.9.2"
regex = "1.11.1"
relay-config = { path = "../relay-config" }
relay-schema = { path = "../relay-schema" }
rustc-hash = "2.1.0"
Expand Down
4 changes: 2 additions & 2 deletions compiler/crates/relay-typegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ graphql-ir = { path = "../graphql-ir" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
intern = { path = "../intern" }
itertools = "0.14.0"
lazy_static = "1.4"
lazy_static = "1.5"
relay-config = { path = "../relay-config" }
relay-schema = { path = "../relay-schema" }
relay-transforms = { path = "../relay-transforms" }
Expand All @@ -30,7 +30,7 @@ schema = { path = "../schema" }
fixture-tests = { path = "../fixture-tests" }
graphql-syntax = { path = "../graphql-syntax" }
graphql-test-helpers = { path = "../graphql-test-helpers" }
regex = "1.9.2"
regex = "1.11.1"
relay-codegen = { path = "../relay-codegen" }
relay-test-schema = { path = "../relay-test-schema" }
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion compiler/crates/schema-diff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ common = { path = "../common" }
fnv = "1.0"
graphql-syntax = { path = "../graphql-syntax" }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
relay-config = { path = "../relay-config" }
rustc-hash = "2.1.0"
schema = { path = "../schema" }
4 changes: 2 additions & 2 deletions compiler/crates/schema-validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ common = { path = "../common" }
fnv = "1.0"
graphql-cli = { path = "../graphql-cli" }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
rayon = "1.9.0"
regex = "1.9.2"
regex = "1.11.1"
schema = { path = "../schema" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
thiserror = "2"
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ flatbuffers = "2.0"
fnv = "1.0"
graphql-syntax = { path = "../graphql-syntax" }
intern = { path = "../intern" }
lazy_static = "1.4"
lazy_static = "1.5"
ouroboros = "0.18.4"
rayon = "1.9.0"
schema-flatbuffer = { path = "../schema-flatbuffer" }
Expand Down
4 changes: 2 additions & 2 deletions compiler/crates/signedsource/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ license = "MIT"

[dependencies]
hex = "0.4.3"
lazy_static = "1.4"
lazy_static = "1.5"
md-5 = "0.10"
regex = "1.9.2"
regex = "1.11.1"

0 comments on commit de6da29

Please sign in to comment.