Skip to content

Commit 5ffa8a0

Browse files
committed
feat: upgrade chain dependencies to 1.19
1 parent 37de961 commit 5ffa8a0

9 files changed

Lines changed: 95 additions & 67 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ anyhow = { version = "1.0.66" }
1111
base64 = { version = "0.21.5" }
1212
cosmos-sdk-proto = { version = "0.20.0", default-features = false }
1313
cosmwasm-schema = { version = "1.5.0" }
14-
cosmwasm-std = { version = "3.0.2", features = [ "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
14+
cosmwasm-std = { version = "3.0.5", features = [ "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
1515
cw-multi-test = { version = "3.0.0" }
1616
cw-storage-plus = { version = "3.0.1" }
1717
cw2 = { version = "3.0.0" }
1818
ethereum-types = { version = "0.5.2" }
1919
hex = { version = "0.4.3", features = [ "serde" ] }
20-
injective-cosmwasm = { version = "0.3.5-1" }
21-
injective-math = { version = "0.3.5-1" }
22-
injective-std = { version = "1.18.0" }
23-
injective-test-tube = { version = "1.18.0" }
24-
injective-testing = { path = "./packages/injective-testing" }
20+
injective-cosmwasm = { version = "0.3.6" }
21+
injective-math = { version = "0.3.6" }
22+
injective-std = { version = "1.19.0" }
23+
injective-test-tube = { version = "1.19.0" }
24+
injective-testing = { version = "1.19.0", path = "./packages/injective-testing" }
2525
primitive-types = { version = "0.12.2", default-features = false }
2626
prost = { version = "0.13.5", features = [ "prost-derive" ] }
2727
rand = { version = "0.4.6" }
@@ -47,9 +47,3 @@ opt-level = 3
4747
overflow-checks = true
4848
panic = 'abort'
4949
rpath = false
50-
51-
[patch.crates-io]
52-
# injective-cosmwasm = { path = "./packages/injective-cosmwasm" }
53-
# injective-math = { path = "./packages/injective-math" }
54-
# injective-protobuf = { path = "./packages/injective-protobuf" }
55-
# injective-testing = { path = "./packages/injective-testing" }

contracts/atomic-order-example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ cosmwasm-std = { workspace = true }
3131
cw-storage-plus = { workspace = true }
3232
cw2 = { workspace = true }
3333
injective-cosmwasm = { path = "../../packages/injective-cosmwasm" }
34-
injective-math = { version = "0.3.5-1"}
34+
injective-math = { version = "0.3.6" }
3535
injective-std = { workspace = true }
3636
prost = { workspace = true }
3737
schemars = { workspace = true }

contracts/injective-cosmwasm-mock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cosmwasm-std = { workspace = true }
2828
cw-storage-plus = { workspace = true }
2929
cw2 = { workspace = true }
3030
injective-cosmwasm = { path = "../../packages/injective-cosmwasm" }
31-
injective-math = { version = "0.3.5-1"}
31+
injective-math = { version = "0.3.6" }
3232
injective-std = { workspace = true }
3333
prost = { workspace = true }
3434
schemars = { workspace = true }

contracts/injective-cosmwasm-stargate-example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cosmwasm-std = { workspace = true }
2828
cw-storage-plus = { workspace = true }
2929
cw2 = { workspace = true }
3030
injective-cosmwasm = { path = "../../packages/injective-cosmwasm" }
31-
injective-math = { version = "0.3.5-1"}
31+
injective-math = { version = "0.3.6" }
3232
injective-std = { workspace = true }
3333
prost = { workspace = true }
3434
schemars = { workspace = true }

packages/injective-cosmwasm/Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ license = "Apache-2.0"
66
name = "injective-cosmwasm"
77
readme = "README.md"
88
repository = "https://github.com/InjectiveLabs/cw-injective/tree/dev/packages/injective-cosmwasm"
9-
version = "0.3.5-1"
9+
version = "0.3.6"
1010

1111
[dependencies]
12-
cosmwasm-std = { version = "3.0.2", features = ["cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
12+
cosmwasm-std = { version = "3.0.5", features = ["cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
1313
cw-storage-plus = { version = "3.0.1" }
1414
ethereum-types = { version = "0.5.2" }
1515
hex = { version = "0.4.3", features = [ "serde" ] }
16-
injective-math = { version = "0.3.5-1"}
16+
injective-math = { version = "0.3.6" }
1717
schemars = { version = "0.8.16" }
1818
serde = { version = "1.0.196", default-features = false, features = [ "derive" ] }
1919
serde_repr = { version = "0.1.17" }
@@ -35,5 +35,3 @@ opt-level = 3
3535
overflow-checks = true
3636
panic = 'abort'
3737
rpath = false
38-
39-

packages/injective-math/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ license = "Apache-2.0"
66
name = "injective-math"
77
readme = "README.md"
88
repository = "https://github.com/InjectiveLabs/cw-injective/tree/dev/packages/injective-math"
9-
version = "0.3.5-1"
9+
version = "0.3.6"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
cosmwasm-std = { version = "3.0.2", features = ["cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
14+
cosmwasm-std = { version = "3.0.5", features = ["cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
1515
primitive-types = { version = "0.12.2", default-features = false }
1616
schemars = { version = "0.8.16" }
1717
serde = { version = "1.0.196", default-features = false, features = [ "derive" ] }

0 commit comments

Comments
 (0)