Use common version of regex across workspace

This commit is contained in:
Paul Hauner
2022-08-25 12:10:21 +10:00
parent e5476cd6b7
commit 89b233449c
8 changed files with 8 additions and 8 deletions

View File

@@ -9,4 +9,4 @@ reqwest = { version = "0.11.0", features = ["json","stream"] }
sensitive_url = { path = "../../common/sensitive_url" }
eth2 = { path = "../../common/eth2" }
serde = { version = "1.0.116", features = ["derive"] }
serde_json = "1.0.58"
serde_json = "1.0.58"

View File

@@ -34,7 +34,7 @@ tiny-keccak = "2.0.2"
task_executor = { path = "../../common/task_executor" }
rand = "0.8.5"
directory = { path = "../../common/directory" }
regex = "1.5.5"
regex = "1.5.4"
strum = { version = "0.24.0", features = ["derive"] }
superstruct = "0.5.0"
prometheus-client = "0.16.0"

View File

@@ -18,6 +18,6 @@ serde_yaml = "0.8.13"
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_trace"] }
types = { path = "../../consensus/types" }
validator_dir = { path = "../validator_dir" }
regex = "1.5.5"
regex = "1.5.4"
rpassword = "5.0.0"
directory = { path = "../directory" }

View File

@@ -11,4 +11,4 @@ git-version = "0.3.4"
target_info = "0.1.0"
[dev-dependencies]
regex = "1.5.5"
regex = "1.5.4"

View File

@@ -19,5 +19,5 @@ lighthouse_metrics = { path = "../lighthouse_metrics" }
slog = "2.5.2"
store = { path = "../../beacon_node/store" }
lazy_static = "1.4.0"
regex = "1.5.5"
regex = "1.5.4"
sensitive_url = { path = "../sensitive_url" }

View File

@@ -39,7 +39,7 @@ derivative = "2.1.1"
rusqlite = { version = "0.25.3", features = ["bundled"], optional = true }
arbitrary = { version = "1.0", features = ["derive"], optional = true }
eth2_serde_utils = "0.1.1"
regex = "1.5.5"
regex = "1.5.4"
lazy_static = "1.4.0"
parking_lot = "0.12.0"
itertools = "0.10.0"

View File

@@ -13,4 +13,4 @@ eth2 = { path = "../../common/eth2" }
validator_client = { path = "../../validator_client" }
validator_dir = { path = "../../common/validator_dir", features = ["insecure_keys"] }
sensitive_url = { path = "../../common/sensitive_url" }
execution_layer = { path = "../../beacon_node/execution_layer" }
execution_layer = { path = "../../beacon_node/execution_layer" }

View File

@@ -25,6 +25,6 @@ tokio = { version = "1.14.0", features = ["time", "rt-multi-thread", "macros"] }
[dev-dependencies]
tempfile = "3.1.0"
regex = "1.6.0"
regex = "1.5.4"
eth2_network_config = { path = "../common/eth2_network_config" }
validator_client = { path = "../validator_client" }