Skip to content

Commit f9661de

Browse files
committed
feat: update dependencies
1 parent bf83129 commit f9661de

File tree

3 files changed

+24
-18
lines changed

3 files changed

+24
-18
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22

33
members = [ "packages/*" ]
44
resolver = "2"
5+
6+
[workspace.dependencies]
7+
ed25519-zebra = { version = "4.1.0", features = ["alloc"] }

packages/injective-test-tube/Cargo.toml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,27 @@ edition = "2021"
44
license = "MIT OR Apache-2.0"
55
name = "injective-test-tube"
66
repository = "https://github.com/InjectiveLabs/test-tube"
7-
version = "1.16.3"
7+
version = "1.16.3-1"
88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
exclude = [ "injective-core", "test_artifacts" ]
1111

1212
[dependencies]
13-
cosmrs = { version = "0.20.0", features = [ "cosmwasm", "rpc" ] }
14-
cosmwasm-std = { version = "2.1.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
15-
injective-cosmwasm = { version = "0.3.0" }
16-
injective-std = { version = "=1.16.0-beta.2" }
17-
prost = { version = "0.13.4", features = [ "prost-derive" ] }
13+
cosmrs = { version = "0.22.0", features = [ "cosmwasm", "rpc" ] }
14+
cosmwasm-std = { version = "2.2.2", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
15+
injective-cosmwasm = { version = "0.3.4-1" }
16+
injective-std = { version = "=1.16.3-1" }
17+
prost = { version = "0.13.5", features = [ "derive" ] }
1818
serde = "1.0.144"
19-
serde_json = "1.0.85"
20-
test-tube-inj = { version = "2.0.6" }
19+
serde_json = "1.0.140"
20+
test-tube-inj = { path = "../test-tube" }
21+
22+
2123

2224
[build-dependencies]
2325
bindgen = "0.60.1"
26+
ed25519-zebra = { workspace = true }
27+
2428

2529
[dev-dependencies]
26-
cw1-whitelist = "1.1.2"
30+
cw1-whitelist = "2.0.0"

packages/test-tube/Cargo.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ version = "2.0.8"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
base64 = "0.21.5"
13-
cosmrs = { version = "0.20.0", features = [ "cosmwasm", "rpc" ] }
14-
cosmwasm-std = { version = "2.2.2", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
15-
prost = "0.13.4"
16-
serde_json = "1.0.85"
17-
thiserror = "1.0.34"
12+
base64 = { version = "0.21.7" }
13+
cosmrs = { version = "0.22.0", features = ["cosmwasm", "rpc"] }
14+
cosmwasm-std = { version = "2.2.2", features = ["abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate"] }
15+
prost = { version = "0.13.5", features = ["derive"] }
16+
serde_json = { version = "1.0.140" }
17+
thiserror = { version = "1.0.69" }
1818

19-
[dev-dependencies]
20-
cw1-whitelist = "0.15.0"
21-
rayon = "1.5.3"
19+
[build-dependencies]
20+
ed25519-zebra = { workspace = true }

0 commit comments

Comments
 (0)