Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to cosmwasm 0.12.0-alpha2 #136

Merged
merged 14 commits into from
Nov 6, 2020
165 changes: 25 additions & 140 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/cw1-subkeys/.cargo/config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[alias]
wasm = "build --release --target wasm32-unknown-unknown"
wasm-debug = "build --target wasm32-unknown-unknown"
unit-test = "test --lib --features backtraces"
unit-test = "test --lib"
integration-test = "test --test integration"
schema = "run --example schema"
6 changes: 3 additions & 3 deletions contracts/cw1-subkeys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ cw0 = { path = "../../packages/cw0", version = "0.3.2" }
cw1 = { path = "../../packages/cw1", version = "0.3.2" }
cw2 = { path = "../../packages/cw2", version = "0.3.2" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.3.2", features = ["library"] }
cosmwasm-std = { version = "0.11.1", features = ["iterator", "staking"] }
cosmwasm-storage = { version = "0.11.1", features = ["iterator"] }
cosmwasm-std = { version = "0.12.0-alpha2", features = ["iterator", "staking"] }
cosmwasm-storage = { version = "0.12.0-alpha2", features = ["iterator"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }

[dev-dependencies]
cosmwasm-schema = { version = "0.11.1" }
cosmwasm-schema = { version = "0.12.0-alpha2" }
Loading