Skip to content

Commit 3c1fe0e

Browse files
committed
Solve issue with virtual manifest
The previous commit added a `dev-dependencies` section to the root `Cargo.toml`, which is not allowed.
1 parent 2ed388b commit 3c1fe0e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ tempfile = { version = "3.13.0" }
3232
tokio = { version = "1.44.2" }
3333
zstd = { version = "0.13.2", default-features = false }
3434

35+
# Integration test-only dependency; consumers depend on it as a dev-dependency.
36+
# Across the whole workspace, it is used solely as a dev dependency; thus it may be pinned to a git revision
37+
# without impacting publication to crates.io .
38+
substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "09c511c3dc97961c8c2bdf7836d3ae02dd672771" }
39+
3540
# Polkadot SDK
3641
frame-remote-externalities = { version = "0.54.0" }
3742
frame-try-runtime = { version = "0.49.0" }
@@ -69,8 +74,3 @@ cumulus-client-parachain-inherent = { version = "0.20.0" }
6974

7075
# Local
7176
try-runtime-core = { path = "core" }
72-
73-
[dev-dependencies]
74-
# The below dependency is only needed for integration tests; thus, being a dev dependency, it is fine for it to
75-
# be pinned to a git revision, as this does not impact publication to crates.io .
76-
substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "09c511c3dc97961c8c2bdf7836d3ae02dd672771" }

0 commit comments

Comments
 (0)