From e8da2810ee87c3af5eade2b2a4624dac0a07c165 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Thu, 25 Aug 2022 12:19:08 +1000 Subject: [PATCH] Revert "Use common version of regex across workspace" This reverts commit 7f74036465fbf1aec89b056363177c074b7ab978. --- beacon_node/builder_client/Cargo.toml | 2 +- beacon_node/lighthouse_network/Cargo.toml | 2 +- common/account_utils/Cargo.toml | 2 +- common/lighthouse_version/Cargo.toml | 2 +- common/monitoring_api/Cargo.toml | 2 +- consensus/types/Cargo.toml | 2 +- testing/node_test_rig/Cargo.toml | 2 +- validator_manager/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/beacon_node/builder_client/Cargo.toml b/beacon_node/builder_client/Cargo.toml index 48ac0300c9..c4d21c59ab 100644 --- a/beacon_node/builder_client/Cargo.toml +++ b/beacon_node/builder_client/Cargo.toml @@ -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" \ No newline at end of file diff --git a/beacon_node/lighthouse_network/Cargo.toml b/beacon_node/lighthouse_network/Cargo.toml index 39aa6e629c..c6ba530508 100644 --- a/beacon_node/lighthouse_network/Cargo.toml +++ b/beacon_node/lighthouse_network/Cargo.toml @@ -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.4" +regex = "1.5.5" strum = { version = "0.24.0", features = ["derive"] } superstruct = "0.5.0" prometheus-client = "0.16.0" diff --git a/common/account_utils/Cargo.toml b/common/account_utils/Cargo.toml index be042b7008..ccff88ceef 100644 --- a/common/account_utils/Cargo.toml +++ b/common/account_utils/Cargo.toml @@ -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.4" +regex = "1.5.5" rpassword = "5.0.0" directory = { path = "../directory" } diff --git a/common/lighthouse_version/Cargo.toml b/common/lighthouse_version/Cargo.toml index 51d2d44ddc..96ac266476 100644 --- a/common/lighthouse_version/Cargo.toml +++ b/common/lighthouse_version/Cargo.toml @@ -11,4 +11,4 @@ git-version = "0.3.4" target_info = "0.1.0" [dev-dependencies] -regex = "1.5.4" +regex = "1.5.5" diff --git a/common/monitoring_api/Cargo.toml b/common/monitoring_api/Cargo.toml index 9d84da6347..bfb5e72042 100644 --- a/common/monitoring_api/Cargo.toml +++ b/common/monitoring_api/Cargo.toml @@ -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.4" +regex = "1.5.5" sensitive_url = { path = "../sensitive_url" } diff --git a/consensus/types/Cargo.toml b/consensus/types/Cargo.toml index a7a34db8ce..68fdbf7990 100644 --- a/consensus/types/Cargo.toml +++ b/consensus/types/Cargo.toml @@ -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.4" +regex = "1.5.5" lazy_static = "1.4.0" parking_lot = "0.12.0" itertools = "0.10.0" diff --git a/testing/node_test_rig/Cargo.toml b/testing/node_test_rig/Cargo.toml index ea5d005c16..2c9bd5939f 100644 --- a/testing/node_test_rig/Cargo.toml +++ b/testing/node_test_rig/Cargo.toml @@ -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" } \ No newline at end of file diff --git a/validator_manager/Cargo.toml b/validator_manager/Cargo.toml index e1f493b5bf..e32f35bb7b 100644 --- a/validator_manager/Cargo.toml +++ b/validator_manager/Cargo.toml @@ -25,6 +25,6 @@ tokio = { version = "1.14.0", features = ["time", "rt-multi-thread", "macros"] } [dev-dependencies] tempfile = "3.1.0" -regex = "1.5.4" +regex = "1.6.0" eth2_network_config = { path = "../common/eth2_network_config" } validator_client = { path = "../validator_client" }