From 61982de511d4862cf55aca98c762e715cb5523a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Tue, 21 Mar 2023 12:23:42 +0100 Subject: [PATCH] A few more workspace versions --- common/client-libs/validator-client/Cargo.toml | 2 +- common/commands/Cargo.toml | 2 +- common/types/Cargo.toml | 2 +- nym-api/Cargo.toml | 2 +- nym-api/nym-api-requests/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/client-libs/validator-client/Cargo.toml b/common/client-libs/validator-client/Cargo.toml index f218d7a6c7..dbe25ebbbd 100644 --- a/common/client-libs/validator-client/Cargo.toml +++ b/common/client-libs/validator-client/Cargo.toml @@ -46,7 +46,7 @@ prost = { version = "0.10", default-features = false, optional = true } flate2 = { version = "1.0.20", optional = true } sha2 = { version = "0.9.5", optional = true } itertools = { version = "0.10", optional = true } -cosmwasm-std = { version = "1.0.0", optional = true } +cosmwasm-std = { workspace = true, optional = true } zeroize = { version = "1.5.7", optional = true } [dev-dependencies] diff --git a/common/commands/Cargo.toml b/common/commands/Cargo.toml index 5a872b0ec1..013670d8cd 100644 --- a/common/commands/Cargo.toml +++ b/common/commands/Cargo.toml @@ -26,7 +26,7 @@ url = "2.2" tap = "1" cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support" } -cosmwasm-std = { version = "1.0.0" } +cosmwasm-std = { workspace = true } validator-client = { path = "../client-libs/validator-client", features = ["nyxd-client"] } nym-network-defaults = { path = "../network-defaults" } diff --git a/common/types/Cargo.toml b/common/types/Cargo.toml index 33fb8c327c..5f822c4987 100644 --- a/common/types/Cargo.toml +++ b/common/types/Cargo.toml @@ -19,7 +19,7 @@ thiserror = "1.0" url = "2.2" ts-rs = "6.1.2" -cosmwasm-std = "1.0.0" +cosmwasm-std = { workspace = true } cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support" } validator-client = { path = "../../common/client-libs/validator-client", features = [ diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 2bbf7cc32b..14f4cac876 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -68,7 +68,7 @@ nym-coconut-bandwidth-contract-common = { path = "../common/cosmwasm-smart-contr nym-coconut-dkg-common = { path = "../common/cosmwasm-smart-contracts/coconut-dkg" } nym-coconut-interface = { path = "../common/coconut-interface" } nym-config = { path = "../common/config" } -cosmwasm-std = "1.0.0" +cosmwasm-std = { workspace = true } nym-credential-storage = { path = "../common/credential-storage" } nym-credentials = { path = "../common/credentials" } nym-crypto = { path = "../common/crypto" } diff --git a/nym-api/nym-api-requests/Cargo.toml b/nym-api/nym-api-requests/Cargo.toml index e2c21bc49e..ed8dc1dce6 100644 --- a/nym-api/nym-api-requests/Cargo.toml +++ b/nym-api/nym-api-requests/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] bs58 = "0.4.0" cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support" } -cosmwasm-std = { version = "1.0.0", default-features = false } +cosmwasm-std = { workspace = true, default-features = false } getset = "0.1.1" schemars = { version = "0.8", features = ["preserve_order"] } serde = { version = "1.0", features = ["derive"] }