Skip to content

Commit d6e9b71

Browse files
committed
Pin version of uint to 0.9.1
1 parent d450501 commit d6e9b71

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to
1010

1111
- cosmwasm-std: The `Debug` implementation of `Binary` now produces a hex string
1212
instead of a list of bytes ([#1199]).
13+
- cosmwasm-std: Pin uint version to 0.9.1 in order to maintain a reasonably low
14+
MSRV.
1315

1416
[#1199]: https://github.com/CosmWasm/cosmwasm/issues/1199
1517

packages/std/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ stargate = []
3333
[dependencies]
3434
base64 = "0.13.0"
3535
cosmwasm-derive = { path = "../derive", version = "1.0.0-beta4" }
36-
uint = "0.9.0"
36+
# uint 0.9.2 uses edition2021 for no reason but we don't want to upgrade MSRV that much right now
37+
# See https://github.com/CosmWasm/cosmwasm/issues/1204
38+
uint = "=0.9.1"
3739
serde-json-wasm = { version = "0.3.2" }
3840
schemars = "0.8.1"
3941
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }

0 commit comments

Comments
 (0)