Skip to content

Commit

Permalink
[FIX][106] Update deps
Browse files Browse the repository at this point in the history
Changed API in updated dependencies lead to failing (unit) tests.
Fixed by updating crate versions.

CosmWasm/cosmwasm#1232
CosmWasm#106
  • Loading branch information
crnch committed Mar 13, 2022
1 parent c8766d0 commit 2578b2e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ optimize = """docker run --rm -v "$(pwd)":/code \
"""

[dependencies]
cosmwasm-std = { version = "1.0.0-beta5" }
cosmwasm-storage = { version = "1.0.0-beta5" }
cw-storage-plus = "0.12"
cw2 = "0.12"
cosmwasm-std = { version = "1.0.0-beta6" }
cosmwasm-storage = { version = "1.0.0-beta6" }
cw-storage-plus = "0.13"
cw2 = "0.13"
schemars = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }
thiserror = { version = "1.0" }

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta5" }
cw-multi-test = "0.12"
cosmwasm-schema = { version = "1.0.0-beta6" }
cw-multi-test = "0.13"

0 comments on commit 2578b2e

Please sign in to comment.