From b3e281b8477a3a7e439912c51004c72bec5bf074 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 5 Aug 2023 14:20:27 -0700 Subject: [PATCH] Update regex and globset to pull in memory usage fixes Reviewed By: zertosh Differential Revision: D48095372 fbshipit-source-id: ec11c2bcaccbd26354d6d0a0398000134eaf3681 --- compiler/crates/relay-compiler/Cargo.toml | 2 +- compiler/crates/relay-config/Cargo.toml | 2 +- compiler/crates/relay-transforms/Cargo.toml | 2 +- compiler/crates/schema-validate/Cargo.toml | 2 +- compiler/crates/signedsource/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/crates/relay-compiler/Cargo.toml b/compiler/crates/relay-compiler/Cargo.toml index 18c9316761a79..a99fb70bd7674 100644 --- a/compiler/crates/relay-compiler/Cargo.toml +++ b/compiler/crates/relay-compiler/Cargo.toml @@ -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" } diff --git a/compiler/crates/relay-config/Cargo.toml b/compiler/crates/relay-config/Cargo.toml index 90c7f0c88a546..b0586cba53c13 100644 --- a/compiler/crates/relay-config/Cargo.toml +++ b/compiler/crates/relay-config/Cargo.toml @@ -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"] } diff --git a/compiler/crates/relay-transforms/Cargo.toml b/compiler/crates/relay-transforms/Cargo.toml index 062cdb61a77d0..4e6460e96f832 100644 --- a/compiler/crates/relay-transforms/Cargo.toml +++ b/compiler/crates/relay-transforms/Cargo.toml @@ -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" } diff --git a/compiler/crates/schema-validate/Cargo.toml b/compiler/crates/schema-validate/Cargo.toml index d2782ce23aab8..23670c441d421 100644 --- a/compiler/crates/schema-validate/Cargo.toml +++ b/compiler/crates/schema-validate/Cargo.toml @@ -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" diff --git a/compiler/crates/signedsource/Cargo.toml b/compiler/crates/signedsource/Cargo.toml index a764d128dde0d..9757af5a6ec56 100644 --- a/compiler/crates/signedsource/Cargo.toml +++ b/compiler/crates/signedsource/Cargo.toml @@ -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"