mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 13:31:10 +00:00
delete primitives in Cargo in primitives (#7751)
This commit is contained in:
@@ -19,7 +19,7 @@ sp-core = { version = "2.0.0", default-features = false, path = "../core" }
|
||||
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
|
||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
|
||||
sp-version = { version = "2.0.0", default-features = false, path = "../version" }
|
||||
sp-state-machine = { version = "0.8.0", optional = true, path = "../../primitives/state-machine" }
|
||||
sp-state-machine = { version = "0.8.0", optional = true, path = "../state-machine" }
|
||||
hash-db = { version = "0.15.2", optional = true }
|
||||
thiserror = { version = "1.0.21", optional = true }
|
||||
|
||||
|
||||
@@ -17,10 +17,10 @@ substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils
|
||||
sp-version = { version = "2.0.0", path = "../../version" }
|
||||
sp-runtime = { version = "2.0.0", path = "../../runtime" }
|
||||
sp-blockchain = { version = "2.0.0", path = "../../blockchain" }
|
||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus = { version = "0.8.0", path = "../../consensus/common" }
|
||||
sc-block-builder = { version = "0.8.0", path = "../../../client/block-builder" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.1" }
|
||||
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
|
||||
sp-state-machine = { version = "0.8.0", path = "../../state-machine" }
|
||||
trybuild = { git = "https://github.com/bkchr/trybuild.git", branch = "bkchr-use-workspace-cargo-lock" }
|
||||
rustversion = "1.0.0"
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ sp-core = { version = "2.0.0", default-features = false, path = "../core" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
|
||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "2.0.0", default-features = false, path = "../io" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -20,7 +20,7 @@ libp2p = { version = "0.32.2", default-features = false }
|
||||
log = "0.4.8"
|
||||
sp-core = { path= "../../core", version = "2.0.0"}
|
||||
sp-inherents = { version = "2.0.0", path = "../../inherents" }
|
||||
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
|
||||
sp-state-machine = { version = "0.8.0", path = "../../state-machine" }
|
||||
futures = { version = "0.3.1", features = ["thread-pool"] }
|
||||
futures-timer = "3.0.1"
|
||||
sp-std = { version = "2.0.0", path = "../../std" }
|
||||
|
||||
@@ -21,10 +21,10 @@ sp-core = { version = "2.0.0", default-features = false, path = "../core" }
|
||||
sp-keystore = { version = "0.8.0", default-features = false, optional = true, path = "../keystore" }
|
||||
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
|
||||
libsecp256k1 = { version = "0.3.4", optional = true }
|
||||
sp-state-machine = { version = "0.8.0", optional = true, path = "../../primitives/state-machine" }
|
||||
sp-wasm-interface = { version = "2.0.0", path = "../../primitives/wasm-interface", default-features = false }
|
||||
sp-state-machine = { version = "0.8.0", optional = true, path = "../state-machine" }
|
||||
sp-wasm-interface = { version = "2.0.0", path = "../wasm-interface", default-features = false }
|
||||
sp-runtime-interface = { version = "2.0.0", default-features = false, path = "../runtime-interface" }
|
||||
sp-trie = { version = "2.0.0", optional = true, path = "../../primitives/trie" }
|
||||
sp-trie = { version = "2.0.0", optional = true, path = "../trie" }
|
||||
sp-externalities = { version = "0.8.0", optional = true, path = "../externalities" }
|
||||
sp-tracing = { version = "2.0.0", default-features = false, path = "../tracing" }
|
||||
log = { version = "0.4.8", optional = true }
|
||||
|
||||
@@ -22,7 +22,7 @@ sp-arithmetic = { version = "2.0.0", default-features = false, path = "../arithm
|
||||
[dev-dependencies]
|
||||
substrate-test-utils = { version = "2.0.0", path = "../../test-utils" }
|
||||
rand = "0.7.3"
|
||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "2.0.0", path = "../runtime" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -16,7 +16,7 @@ sp-runtime-interface = { version = "2.0.0", path = "../" }
|
||||
sc-executor = { version = "0.8.0", path = "../../../client/executor" }
|
||||
sp-runtime-interface-test-wasm = { version = "2.0.0", path = "../test-wasm" }
|
||||
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0", path = "../test-wasm-deprecated" }
|
||||
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
|
||||
sp-state-machine = { version = "0.8.0", path = "../../state-machine" }
|
||||
sp-runtime = { version = "2.0.0", path = "../../runtime" }
|
||||
sp-core = { version = "2.0.0", path = "../../core" }
|
||||
sp-io = { version = "2.0.0", path = "../../io" }
|
||||
|
||||
@@ -33,7 +33,7 @@ either = { version = "1.5", default-features = false }
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.41"
|
||||
rand = "0.7.2"
|
||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
||||
sp-state-machine = { version = "0.8.0", path = "../state-machine" }
|
||||
|
||||
[features]
|
||||
bench = []
|
||||
|
||||
Reference in New Issue
Block a user