Skip to content

Commit 74da00c

Browse files
committed
Diener workspacify
Signed-off-by: alvicsam <[email protected]>
1 parent 8f2cd76 commit 74da00c

File tree

251 files changed

+2340
-2340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

251 files changed

+2340
-2340
lines changed

substrate/bin/node-template/node/Cargo.toml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -20,51 +20,51 @@ name = "node-template"
2020
clap = { version = "4.2.5", features = ["derive"] }
2121
futures = { version = "0.3.21", features = ["thread-pool"]}
2222

23-
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
24-
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
25-
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
26-
sc-network = { version = "0.10.0-dev", path = "../../../client/network" }
27-
sc-service = { version = "0.10.0-dev", path = "../../../client/service" }
28-
sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" }
29-
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
30-
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
31-
sc-offchain = { version = "4.0.0-dev", path = "../../../client/offchain" }
32-
sc-consensus-aura = { version = "0.10.0-dev", path = "../../../client/consensus/aura" }
33-
sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" }
34-
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
35-
sc-consensus-grandpa = { version = "0.10.0-dev", path = "../../../client/consensus/grandpa" }
36-
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
37-
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
38-
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
39-
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
40-
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
41-
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
42-
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
43-
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
44-
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
23+
sc-cli = { path = "../../../client/cli" }
24+
sp-core = { path = "../../../primitives/core" }
25+
sc-executor = { path = "../../../client/executor" }
26+
sc-network = { path = "../../../client/network" }
27+
sc-service = { path = "../../../client/service" }
28+
sc-telemetry = { path = "../../../client/telemetry" }
29+
sc-transaction-pool = { path = "../../../client/transaction-pool" }
30+
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
31+
sc-offchain = { path = "../../../client/offchain" }
32+
sc-consensus-aura = { path = "../../../client/consensus/aura" }
33+
sp-consensus-aura = { path = "../../../primitives/consensus/aura" }
34+
sc-consensus = { path = "../../../client/consensus/common" }
35+
sc-consensus-grandpa = { path = "../../../client/consensus/grandpa" }
36+
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa" }
37+
sc-client-api = { path = "../../../client/api" }
38+
sp-runtime = { path = "../../../primitives/runtime" }
39+
sp-io = { path = "../../../primitives/io" }
40+
sp-timestamp = { path = "../../../primitives/timestamp" }
41+
sp-inherents = { path = "../../../primitives/inherents" }
42+
sp-keyring = { path = "../../../primitives/keyring" }
43+
frame-system = { path = "../../../frame/system" }
44+
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false}
4545

4646
# These dependencies are used for the node template's RPCs
4747
jsonrpsee = { version = "0.16.2", features = ["server"] }
48-
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
49-
sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" }
50-
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
51-
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
52-
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
53-
substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" }
54-
pallet-transaction-payment-rpc = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/rpc/" }
48+
sp-api = { path = "../../../primitives/api" }
49+
sc-rpc-api = { path = "../../../client/rpc-api" }
50+
sp-blockchain = { path = "../../../primitives/blockchain" }
51+
sp-block-builder = { path = "../../../primitives/block-builder" }
52+
sc-basic-authorship = { path = "../../../client/basic-authorship" }
53+
substrate-frame-rpc-system = { path = "../../../utils/frame/rpc/system" }
54+
pallet-transaction-payment-rpc = { path = "../../../frame/transaction-payment/rpc" }
5555

5656
# These dependencies are used for runtime benchmarking
57-
frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" }
58-
frame-benchmarking-cli = { version = "4.0.0-dev", path = "../../../utils/frame/benchmarking-cli" }
57+
frame-benchmarking = { path = "../../../frame/benchmarking" }
58+
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli" }
5959

6060
# Local Dependencies
61-
node-template-runtime = { version = "4.0.0-dev", path = "../runtime" }
61+
node-template-runtime = { path = "../runtime" }
6262

6363
# CLI-specific dependencies
64-
try-runtime-cli = { version = "0.10.0-dev", optional = true, path = "../../../utils/frame/try-runtime/cli" }
64+
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true}
6565

6666
[build-dependencies]
67-
substrate-build-script-utils = { version = "3.0.0", path = "../../../utils/build-script-utils" }
67+
substrate-build-script-utils = { path = "../../../utils/build-script-utils" }
6868

6969
[features]
7070
default = []

substrate/bin/node-template/pallets/template/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
1717
"derive",
1818
] }
1919
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
20-
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../../../../frame/benchmarking" }
21-
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../../frame/support" }
22-
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../../frame/system" }
23-
sp-std = { version = "8.0.0", default-features = false, path = "../../../../primitives/std" }
20+
frame-benchmarking = { path = "../../../../frame/benchmarking", default-features = false, optional = true}
21+
frame-support = { path = "../../../../frame/support", default-features = false}
22+
frame-system = { path = "../../../../frame/system", default-features = false}
23+
sp-std = { path = "../../../../primitives/std", default-features = false}
2424

2525
[dev-dependencies]
26-
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
27-
sp-io = { version = "23.0.0", path = "../../../../primitives/io" }
28-
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
26+
sp-core = { path = "../../../../primitives/core" }
27+
sp-io = { path = "../../../../primitives/io" }
28+
sp-runtime = { path = "../../../../primitives/runtime" }
2929

3030
[features]
3131
default = [ "std" ]

substrate/bin/node-template/runtime/Cargo.toml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -16,43 +16,43 @@ targets = ["x86_64-unknown-linux-gnu"]
1616
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
1717
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
1818

19-
pallet-aura = { version = "4.0.0-dev", default-features = false, path = "../../../frame/aura" }
20-
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../../frame/balances" }
21-
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" }
22-
pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../frame/grandpa" }
23-
pallet-sudo = { version = "4.0.0-dev", default-features = false, path = "../../../frame/sudo" }
24-
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
25-
frame-try-runtime = { version = "0.10.0-dev", default-features = false, path = "../../../frame/try-runtime", optional = true }
26-
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../frame/timestamp" }
27-
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
28-
frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" }
29-
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
30-
sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/block-builder"}
31-
sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/aura" }
32-
sp-consensus-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/consensus/grandpa" }
33-
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
34-
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents"}
35-
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
36-
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
37-
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
38-
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
39-
sp-storage = { version = "13.0.0", default-features = false, path = "../../../primitives/storage" }
40-
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
41-
sp-version = { version = "22.0.0", default-features = false, path = "../../../primitives/version" }
19+
pallet-aura = { path = "../../../frame/aura", default-features = false}
20+
pallet-balances = { path = "../../../frame/balances", default-features = false}
21+
frame-support = { path = "../../../frame/support", default-features = false}
22+
pallet-grandpa = { path = "../../../frame/grandpa", default-features = false}
23+
pallet-sudo = { path = "../../../frame/sudo", default-features = false}
24+
frame-system = { path = "../../../frame/system", default-features = false}
25+
frame-try-runtime = { path = "../../../frame/try-runtime", default-features = false, optional = true }
26+
pallet-timestamp = { path = "../../../frame/timestamp", default-features = false}
27+
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false}
28+
frame-executive = { path = "../../../frame/executive", default-features = false}
29+
sp-api = { path = "../../../primitives/api", default-features = false}
30+
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false}
31+
sp-consensus-aura = { path = "../../../primitives/consensus/aura", default-features = false}
32+
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa", default-features = false}
33+
sp-core = { path = "../../../primitives/core", default-features = false}
34+
sp-inherents = { path = "../../../primitives/inherents", default-features = false}
35+
sp-offchain = { path = "../../../primitives/offchain", default-features = false}
36+
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
37+
sp-session = { path = "../../../primitives/session", default-features = false}
38+
sp-std = { path = "../../../primitives/std", default-features = false}
39+
sp-storage = { path = "../../../primitives/storage", default-features = false}
40+
sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false}
41+
sp-version = { path = "../../../primitives/version", default-features = false}
4242

4343
# Used for the node template's RPCs
44-
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
45-
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
44+
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api", default-features = false}
45+
pallet-transaction-payment-rpc-runtime-api = { path = "../../../frame/transaction-payment/rpc/runtime-api", default-features = false}
4646

4747
# Used for runtime benchmarking
48-
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking", optional = true }
49-
frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
48+
frame-benchmarking = { path = "../../../frame/benchmarking", default-features = false, optional = true }
49+
frame-system-benchmarking = { path = "../../../frame/system/benchmarking", default-features = false, optional = true }
5050

5151
# Local Dependencies
52-
pallet-template = { version = "4.0.0-dev", default-features = false, path = "../pallets/template" }
52+
pallet-template = { path = "../pallets/template", default-features = false}
5353

5454
[build-dependencies]
55-
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder", optional = true }
55+
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
5656

5757
[features]
5858
default = [ "std" ]

substrate/bin/node/bench/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,30 @@ publish = false
1515
array-bytes = "6.1"
1616
clap = { version = "4.2.5", features = ["derive"] }
1717
log = "0.4.17"
18-
node-primitives = { version = "2.0.0", path = "../primitives" }
19-
node-testing = { version = "3.0.0-dev", path = "../testing" }
20-
kitchensink-runtime = { version = "3.0.0-dev", path = "../runtime" }
21-
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" }
22-
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
23-
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
18+
node-primitives = { path = "../primitives" }
19+
node-testing = { path = "../testing" }
20+
kitchensink-runtime = { path = "../runtime" }
21+
sc-client-api = { path = "../../../client/api" }
22+
sp-runtime = { path = "../../../primitives/runtime" }
23+
sp-state-machine = { path = "../../../primitives/state-machine" }
2424
serde = "1.0.163"
2525
serde_json = "1.0.85"
2626
derive_more = { version = "0.99.17", default-features = false, features = ["display"] }
2727
kvdb = "0.13.0"
2828
kvdb-rocksdb = "0.19.0"
29-
sp-trie = { version = "22.0.0", path = "../../../primitives/trie" }
30-
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
31-
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
32-
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
33-
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
34-
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
35-
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
29+
sp-trie = { path = "../../../primitives/trie" }
30+
sp-core = { path = "../../../primitives/core" }
31+
sp-consensus = { path = "../../../primitives/consensus/common" }
32+
sc-basic-authorship = { path = "../../../client/basic-authorship" }
33+
sp-inherents = { path = "../../../primitives/inherents" }
34+
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false}
35+
sp-tracing = { path = "../../../primitives/tracing" }
3636
hash-db = "0.16.0"
3737
tempfile = "3.1.0"
3838
fs_extra = "1"
3939
rand = { version = "0.8.5", features = ["small_rng"] }
4040
lazy_static = "1.4.0"
4141
parity-db = "0.4.8"
42-
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
43-
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
42+
sc-transaction-pool = { path = "../../../client/transaction-pool" }
43+
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
4444
futures = { version = "0.3.21", features = ["thread-pool"] }

0 commit comments

Comments
 (0)