Skip to content

Commit

Permalink
Update regex and globset to pull in memory usage fixes
Browse files Browse the repository at this point in the history
Reviewed By: zertosh

Differential Revision: D48095372

fbshipit-source-id: ec11c2bcaccbd26354d6d0a0398000134eaf3681
  • Loading branch information
David Tolnay authored and facebook-github-bot committed Aug 5, 2023
1 parent 8aeceb5 commit b3e281b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion compiler/crates/relay-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ log = { version = "0.4.17", features = ["kv_unstable", "kv_unstable_std"] }
md-5 = "0.10"
persist-query = { path = "../persist-query" }
rayon = "1.2"
regex = "1.6.0"
regex = "1.9.2"
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 @@ -12,7 +12,7 @@ fnv = "1.0"
indexmap = { version = "1.9.2", features = ["arbitrary", "rayon", "serde-1"] }
intern = { path = "../intern" }
pathdiff = "0.2"
regex = "1.6.0"
regex = "1.9.2"
serde = { version = "1.0.176", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
strum = { version = "0.24", features = ["derive"] }
2 changes: 1 addition & 1 deletion compiler/crates/relay-transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ itertools = "0.10.3"
lazy_static = "1.4"
once_cell = "1.12"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
regex = "1.6.0"
regex = "1.9.2"
relay-config = { path = "../relay-config" }
rustc-hash = "1.1.0"
schema = { path = "../schema" }
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/schema-validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fnv = "1.0"
intern = { path = "../intern" }
lazy_static = "1.4"
log = { version = "0.4.17", features = ["kv_unstable", "kv_unstable_std"] }
regex = "1.6.0"
regex = "1.9.2"
schema = { path = "../schema" }
schema-print = { path = "../schema-print" }
thiserror = "1.0.43"
Expand Down
2 changes: 1 addition & 1 deletion compiler/crates/signedsource/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ license = "MIT"
hex = "0.4.3"
lazy_static = "1.4"
md-5 = "0.10"
regex = "1.6.0"
regex = "1.9.2"

0 comments on commit b3e281b

Please sign in to comment.