From 89b233449c34598bf3f38d79dd897945c9764698 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Thu, 25 Aug 2022 12:10:21 +1000 Subject: [PATCH] Use common version of regex across workspace --- 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 c4d21c59ab..48ac0300c9 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" \ No newline at end of file +serde_json = "1.0.58" diff --git a/beacon_node/lighthouse_network/Cargo.toml b/beacon_node/lighthouse_network/Cargo.toml index c6ba530508..39aa6e629c 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.5" +regex = "1.5.4" 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 ccff88ceef..be042b7008 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.5" +regex = "1.5.4" rpassword = "5.0.0" directory = { path = "../directory" } diff --git a/common/lighthouse_version/Cargo.toml b/common/lighthouse_version/Cargo.toml index 96ac266476..51d2d44ddc 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.5" +regex = "1.5.4" diff --git a/common/monitoring_api/Cargo.toml b/common/monitoring_api/Cargo.toml index bfb5e72042..9d84da6347 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.5" +regex = "1.5.4" sensitive_url = { path = "../sensitive_url" } diff --git a/consensus/types/Cargo.toml b/consensus/types/Cargo.toml index 68fdbf7990..a7a34db8ce 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.5" +regex = "1.5.4" 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 2c9bd5939f..ea5d005c16 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" } \ No newline at end of file +execution_layer = { path = "../../beacon_node/execution_layer" } diff --git a/validator_manager/Cargo.toml b/validator_manager/Cargo.toml index e32f35bb7b..e1f493b5bf 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.6.0" +regex = "1.5.4" eth2_network_config = { path = "../common/eth2_network_config" } validator_client = { path = "../validator_client" }