Skip to content

Commit 45a122f

Browse files
authored
Merge pull request #1565 from CosmWasm/thiserror-upgrade
Bump min thiserror version to 1.0.26 for consistency
2 parents 94e9899 + 358dc3e commit 45a122f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

contracts/cyberpunk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"]
3232
cosmwasm-schema = { path = "../../packages/schema" }
3333
cosmwasm-std = { path = "../../packages/std", default-features = false, features = ["abort"] }
3434
rust-argon2 = "0.8"
35-
thiserror = "1.0"
35+
thiserror = "1.0.26"
3636

3737
[dev-dependencies]
3838
cosmwasm-storage = { path = "../../packages/storage", default-features = false }

contracts/floaty/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ cosmwasm-schema = { path = "../../packages/schema" }
3535
cosmwasm-std = { path = "../../packages/std" }
3636
schemars = "0.8.3"
3737
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
38-
thiserror = "1.0"
38+
thiserror = "1.0.26"
3939

4040
[dev-dependencies]
4141
cosmwasm-storage = { path = "../../packages/storage" }

contracts/hackatom/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ cosmwasm-std = { path = "../../packages/std", default-features = false, features
3636
schemars = "0.8.3"
3737
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3838
sha2 = "0.10"
39-
thiserror = "1.0"
39+
thiserror = "1.0.26"
4040

4141
[dev-dependencies]
4242
cosmwasm-storage = { path = "../../packages/storage", default-features = false }

contracts/reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cosmwasm-std = { path = "../../packages/std", default-features = false, features
3838
cosmwasm-storage = { path = "../../packages/storage", default-features = false }
3939
schemars = "0.8.3"
4040
serde = { version = "=1.0.103", default-features = false, features = ["derive"] }
41-
thiserror = "1.0"
41+
thiserror = "1.0.26"
4242

4343
[dev-dependencies]
4444
cosmwasm-vm = { path = "../../packages/vm", default-features = false, features = ["stargate"] }

packages/crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ k256 = { version = "0.11.1", features = ["ecdsa"] }
2323
ed25519-zebra = "3"
2424
digest = "0.10"
2525
rand_core = { version = "0.6", features = ["getrandom"] }
26-
thiserror = "1.0.13"
26+
thiserror = "1.0.26"
2727

2828
[dev-dependencies]
2929
criterion = "0.3"

packages/schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cosmwasm-schema-derive = { version = "=1.2.0-beta.0", path = "../schema-derive"
1212
schemars = "0.8.3"
1313
serde = "1.0"
1414
serde_json = "1.0.40"
15-
thiserror = "1.0.13"
15+
thiserror = "1.0.26"
1616

1717
[dev-dependencies]
1818
anyhow = "1.0.57"

packages/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ schemars = "0.8.3"
5050
sha2 = "0.10.3"
5151
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
5252
serde-json-wasm = { version = "0.5.0" }
53-
thiserror = "1.0.13"
53+
thiserror = "1.0.26"
5454
uint = "0.9.3"
5555

5656
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

packages/vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ schemars = "0.8.3"
4949
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
5050
serde_json = "1.0.40"
5151
sha2 = "0.10.3"
52-
thiserror = "1.0.13"
52+
thiserror = "1.0.26"
5353
wasmer = { version = "=2.3.0", default-features = false, features = ["cranelift", "universal", "singlepass"] }
5454
wasmer-middlewares = "=2.3.0"
5555
loupe = "0.1.3"

0 commit comments

Comments
 (0)