From c11d2efa83f89f7df390f445a1ab305bb6fd72ca Mon Sep 17 00:00:00 2001 From: Sean Chen Date: Tue, 23 Apr 2024 10:10:59 -0500 Subject: [PATCH] Update cosmwasm dependencies --- Cargo.toml | 6 +++--- ci/cw-check/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b85c7e0c1f..7770901771 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,9 +116,9 @@ tendermint-testgen = { version = "0.34.0", default-features = fals ### Note: Kept at the following version to match the CosmWasm module version ### used by chains supporting the wasm-enabled version of ibc-go v7.3 ### (This is the min version of `ibc-go` that supports `08-wasm` light clients) -cosmwasm-schema = { version = "1.5.2" } -cosmwasm-std = { version = "1.5.2" } -cosmwasm-vm = { version = "1.5.2" } +cosmwasm-schema = { version = "1.5.4" } +cosmwasm-std = { version = "1.5.4" } +cosmwasm-vm = { version = "1.5.4" } # parity dependencies parity-scale-codec = { version = "3.6.5", default-features = false, features = ["full"] } diff --git a/ci/cw-check/Cargo.toml b/ci/cw-check/Cargo.toml index 5b24d0e3c4..86af97be6e 100644 --- a/ci/cw-check/Cargo.toml +++ b/ci/cw-check/Cargo.toml @@ -9,8 +9,8 @@ crate-type = ["cdylib", "rlib"] [dependencies] ibc-apps = { path = "../../ibc-apps", default_features = false, features = ["serde", "parity-scale-codec"] } ibc-core = { path = "../../ibc-core", features = ["serde", "parity-scale-codec", "schema"] } -cosmwasm-std = { version = "^1.5.3", default-features = false } -cosmwasm-schema = { version = "^1.5.3", default-features = false } +cosmwasm-std = { version = "1.5.4", default-features = false } +cosmwasm-schema = { version = "1.5.4", default-features = false } serde_json = { package = "serde-json-wasm", version = "^1.0.1", default-features = false } thiserror = { version = "^1.0", default-features = false }