Skip to content

Commit 3b260e2

Browse files
fix: propagate base64 from workspace (#1085)
1 parent cf82f2a commit 3b260e2

File tree

6 files changed

+25
-21
lines changed

6 files changed

+25
-21
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- [ibc] Resolve potential `base64` dependency resolution issue by bringing it to
2+
the workspace `Cargo.toml`
3+
([\#1084](https://github.com/cosmos/ibc-rs/issues/1084))

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ authors = ["Informal Systems <hello@informal.systems>"]
5050

5151
[workspace.dependencies]
5252
# external dependencies
53+
base64 = { version = "0.21", default-features = false }
5354
borsh = { version = "0.10", default-features = false }
5455
displaydoc = { version = "0.2", default-features = false }
5556
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display", "try_into"] }

ci/cw-check/Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ci/cw-check/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ crate-type = ["cdylib", "rlib"]
99
[dependencies]
1010
ibc-apps = { path = "../../ibc-apps", default_features = false, features = ["serde", "parity-scale-codec"] }
1111
ibc-core = { path = "../../ibc-core", features = ["serde", "parity-scale-codec", "schema"] }
12-
cosmwasm-std = { version = "^1.5.0", default-features = false }
13-
cosmwasm-schema = { version = "^1.5.0", default-features = false }
12+
cosmwasm-std = { version = "^1.5.3", default-features = false }
13+
cosmwasm-schema = { version = "^1.5.3", default-features = false }
1414
serde_json = { package = "serde-json-wasm", version = "^1.0.1", default-features = false }
1515
thiserror = { version = "^1.0", default-features = false }
1616

ibc-apps/ics721-nft-transfer/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ all-features = true
2020
[dependencies]
2121
# external dependencies
2222
borsh = { workspace = true, optional = true }
23-
base64 = { version = "0.21.6", default-features = false }
23+
base64 = { workspace = true }
2424
derive_more = { workspace = true }
2525
displaydoc = { workspace = true }
2626
http = "1.0.0"

ibc-clients/ics08-wasm/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ description = """
1616

1717
[dependencies]
1818
# external dependencies
19-
base64 = { version = "0.21", default-features = false, features = ["alloc"] }
19+
base64 = { workspace = true , features = ["alloc"] }
2020
displaydoc = { workspace = true }
2121
serde = { workspace = true , optional = true }
2222
cosmwasm-schema = { version = "1.4.1", default-features = false, optional = true }

0 commit comments

Comments
 (0)