From ba326670395ecac07ee10c70795634944130ae52 Mon Sep 17 00:00:00 2001 From: Collin Brittain Date: Fri, 3 Nov 2023 13:28:44 -0500 Subject: [PATCH] Bump clarity dependency --- orchestrator/Cargo.lock | 4 ++-- orchestrator/Cargo.toml | 3 +++ orchestrator/cosmos_gravity/Cargo.toml | 2 +- orchestrator/gravity_utils/Cargo.toml | 2 +- orchestrator/orchestrator/Cargo.toml | 2 +- orchestrator/register_delegate_keys/Cargo.toml | 2 +- orchestrator/relayer/Cargo.toml | 2 +- orchestrator/test_runner/Cargo.toml | 2 +- 8 files changed, 11 insertions(+), 8 deletions(-) diff --git a/orchestrator/Cargo.lock b/orchestrator/Cargo.lock index 6017c436d..8e61e0138 100644 --- a/orchestrator/Cargo.lock +++ b/orchestrator/Cargo.lock @@ -1102,9 +1102,9 @@ dependencies = [ [[package]] name = "clarity" -version = "0.4.12" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef8749bcae70d65c0705636ee675020490f35e05cf4ec2d4b78455aeca2194f7" +checksum = "309ac0ae526b740d40038944bf41c3679acb212657154e1f6bb678704cba37da" dependencies = [ "lazy_static", "num-bigint 0.4.0", diff --git a/orchestrator/Cargo.toml b/orchestrator/Cargo.toml index 822b73457..759cb9298 100644 --- a/orchestrator/Cargo.toml +++ b/orchestrator/Cargo.toml @@ -28,6 +28,9 @@ members = [ "gravity_abi", ] +[workspace.dependencies] +clarity = "0.4.16" + [dependencies] orchestrator = { path = "./orchestrator" } cosmos_gravity = { path = "./cosmos_gravity" } diff --git a/orchestrator/cosmos_gravity/Cargo.toml b/orchestrator/cosmos_gravity/Cargo.toml index fe1d35075..c8a7daddf 100644 --- a/orchestrator/cosmos_gravity/Cargo.toml +++ b/orchestrator/cosmos_gravity/Cargo.toml @@ -13,7 +13,7 @@ gravity_proto = {path = "../gravity_proto/"} deep_space = { git = "https://github.com/iqlusioninc/deep_space/", branch = "master" } ethers = { git = "https://github.com/iqlusioninc/ethers-rs.git", branch="zaki/error_abi_support", features = ["abigen"] } -clarity = "0.4.11" +clarity.workspace = true serde = "1.0" log = "0.4" sha3 = "0.9" diff --git a/orchestrator/gravity_utils/Cargo.toml b/orchestrator/gravity_utils/Cargo.toml index bc9a4b131..9002d6002 100644 --- a/orchestrator/gravity_utils/Cargo.toml +++ b/orchestrator/gravity_utils/Cargo.toml @@ -12,7 +12,7 @@ gravity_proto = { path = "../gravity_proto/" } cosmos-sdk-proto = "0.6.3" deep_space = { git = "https://github.com/iqlusioninc/deep_space/", branch = "master" } ethers = { git = "https://github.com/iqlusioninc/ethers-rs.git", branch = "zaki/error_abi_support", features = ["abigen"] } -clarity = "0.4.11" +clarity.workspace = true lazy_static = "1.4.0" num256 = "0.3" serde_derive = "1.0" diff --git a/orchestrator/orchestrator/Cargo.toml b/orchestrator/orchestrator/Cargo.toml index 5c0ccf5fa..877f7ce71 100644 --- a/orchestrator/orchestrator/Cargo.toml +++ b/orchestrator/orchestrator/Cargo.toml @@ -19,7 +19,7 @@ gravity_proto = { path = "../gravity_proto" } deep_space = { git = "https://github.com/iqlusioninc/deep_space/", branch = "master" } ethers = { git = "https://github.com/iqlusioninc/ethers-rs.git", branch = "zaki/error_abi_support", features = ["abigen"] } serde_derive = "1.0" -clarity = "0.4.11" +clarity.workspace = true serde = "1.0" actix-rt = "2.5" lazy_static = "1" diff --git a/orchestrator/register_delegate_keys/Cargo.toml b/orchestrator/register_delegate_keys/Cargo.toml index c7c9bcfaf..9dab6aeb6 100644 --- a/orchestrator/register_delegate_keys/Cargo.toml +++ b/orchestrator/register_delegate_keys/Cargo.toml @@ -18,7 +18,7 @@ gravity_proto = {path = "../gravity_proto/"} deep_space = { git = "https://github.com/iqlusioninc/deep_space/", branch = "master" } ethers = { git = "https://github.com/iqlusioninc/ethers-rs.git", branch = "zaki/error_abi_support", features = ["abigen"] } serde_derive = "1.0" -clarity = "0.4.11" +clarity.workspace = true docopt = "1" serde = "1.0" actix-rt = "2.5" diff --git a/orchestrator/relayer/Cargo.toml b/orchestrator/relayer/Cargo.toml index b388a565f..4ab1916a8 100644 --- a/orchestrator/relayer/Cargo.toml +++ b/orchestrator/relayer/Cargo.toml @@ -22,7 +22,7 @@ gravity_proto = { path = "../gravity_proto" } deep_space = { git = "https://github.com/iqlusioninc/deep_space/", branch = "master" } ethers = { git = "https://github.com/iqlusioninc/ethers-rs.git", branch = "zaki/error_abi_support", features = ["abigen"] } serde_derive = "1.0" -clarity = "0.4.11" +clarity.workspace = true docopt = "1" serde = "1.0" actix-rt = "2.5" diff --git a/orchestrator/test_runner/Cargo.toml b/orchestrator/test_runner/Cargo.toml index fb860cb81..2e834c00d 100644 --- a/orchestrator/test_runner/Cargo.toml +++ b/orchestrator/test_runner/Cargo.toml @@ -18,7 +18,7 @@ gravity_proto = {path = "../gravity_proto/"} deep_space = { git = "https://github.com/iqlusioninc/deep_space/", branch = "master" } serde_derive = "1.0" -clarity = "0.4.11" +clarity.workspace = true ethers = { git = "https://github.com/iqlusioninc/ethers-rs.git", branch = "zaki/error_abi_support", features = ["abigen"] } serde = "1.0" actix = "0.12"