Skip to content

Commit 6b95f11

Browse files
committed
Bump non-Polkadot SDK deps
1 parent e3fbfbd commit 6b95f11

1 file changed

Lines changed: 24 additions & 19 deletions

File tree

Cargo.toml

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44
members = ["cli", "core"]
55

66
[workspace.package]
7-
version = "0.9.0"
7+
version = "0.9.1"
88
authors = ["Parity Technologies <admin@parity.io>"]
99
description = "Substrate's programmatic testing framework."
1010
edition = "2021"
@@ -13,24 +13,30 @@ homepage = "https://github.com/paritytech/try-runtime-cli"
1313
repository = "https://github.com/paritytech/try-runtime-cli/"
1414

1515
[workspace.dependencies]
16-
array-bytes = { version = "6.2.3" }
17-
assert_cmd = { version = "2.0.16" }
18-
async-trait = { version = "0.1.83" }
19-
bytesize = { version = "1.3.0" }
20-
clap = { version = "4.5.18" }
21-
env_logger = { version = "0.11.5" }
16+
# Reminder: "~a.b" means >= a.b.0, < a.(b + 1).0
17+
array-bytes = { version = "~9.3" }
18+
assert_cmd = { version = "~2.1" }
19+
async-trait = { version = "~0.1" }
20+
bytesize = { version = "~2.3" }
21+
clap = { version = "~4.5" }
22+
env_logger = { version = "~0.11" }
2223
hex = { version = "0.4.3", default-features = false }
23-
itertools = { version = "0.13.0" }
24-
log = { version = "0.4.22" }
25-
parity-scale-codec = { version = "3.6.12" }
26-
regex = { version = "1.11.0" }
27-
serde = { version = "1.0.210" }
28-
serde_json = { version = "1.0.128" }
29-
strum = "0.26"
30-
strum_macros = "0.26"
31-
tempfile = { version = "3.13.0" }
32-
tokio = { version = "1.44.2" }
33-
zstd = { version = "0.13.2", default-features = false }
24+
itertools = { version = "~0.14" }
25+
log = { version = "~0.4.29" }
26+
parity-scale-codec = { version = "~3.7" }
27+
regex = { version = "~1.12" }
28+
serde = { version = "~1.0" }
29+
serde_json = { version = "~1.0" }
30+
strum = "~0.27"
31+
strum_macros = "~0.27"
32+
tempfile = { version = "~3.24" }
33+
tokio = { version = "~1.49" }
34+
zstd = { version = "~0.13", default-features = false }
35+
36+
# Integration test-only dependency.
37+
# Across the whole workspace, it is used solely as a dev dependency; thus it may be pinned to a git revision
38+
# without impacting publication to crates.io .
39+
substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0c70641e25b2" }
3440

3541
# Polkadot SDK (using latest master for relay_parent_offset support)
3642
frame-remote-externalities = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0c70641e25b2" }
@@ -60,7 +66,6 @@ sp-transaction-storage-proof = { git = "https://github.com/paritytech/polkadot-s
6066
sp-version = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0c70641e25b2" }
6167
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0c70641e25b2" }
6268

63-
substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0c70641e25b2" }
6469
substrate-rpc-client = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0c70641e25b2" }
6570

6671
polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0c70641e25b2" }

0 commit comments

Comments
 (0)