Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 1724153

Browse files
authored
Remove unused dependencies (#14464)
1 parent a779e4d commit 1724153

File tree

44 files changed

+0
-201
lines changed

Some content is hidden

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

44 files changed

+0
-201
lines changed

Cargo.lock

-87
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node-template/node/Cargo.toml

-4
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,10 @@ sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
2626
sc-network = { version = "0.10.0-dev", path = "../../../client/network" }
2727
sc-service = { version = "0.10.0-dev", path = "../../../client/service" }
2828
sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" }
29-
sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" }
3029
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
3130
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
32-
sc-statement-store = { version = "4.0.0-dev", path = "../../../client/statement-store" }
3331
sc-consensus-aura = { version = "0.10.0-dev", path = "../../../client/consensus/aura" }
3432
sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" }
35-
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
3633
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
3734
sc-consensus-grandpa = { version = "0.10.0-dev", path = "../../../client/consensus/grandpa" }
3835
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
@@ -47,7 +44,6 @@ pallet-transaction-payment = { version = "4.0.0-dev", default-features = false,
4744

4845
# These dependencies are used for the node template's RPCs
4946
jsonrpsee = { version = "0.16.2", features = ["server"] }
50-
sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" }
5147
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
5248
sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" }
5349
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }

bin/node/cli/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
5656
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
5757
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
5858
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
59-
sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" }
6059
sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../../primitives/transaction-storage-proof" }
6160
sp-io = { path = "../../../primitives/io" }
6261

@@ -87,8 +86,6 @@ sc-storage-monitor = { version = "0.1.0", path = "../../../client/storage-monito
8786
# frame dependencies
8887
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
8988
frame-system-rpc-runtime-api = { version = "4.0.0-dev", path = "../../../frame/system/rpc/runtime-api" }
90-
pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" }
91-
pallet-asset-conversion = { version = "4.0.0-dev", path = "../../../frame/asset-conversion" }
9289
pallet-assets = { version = "4.0.0-dev", path = "../../../frame/assets/" }
9390
pallet-asset-conversion-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
9491
pallet-asset-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-tx-payment" }

bin/node/inspect/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ codec = { package = "parity-scale-codec", version = "3.6.1" }
1818
thiserror = "1.0"
1919
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
2020
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
21-
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
2221
sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" }
2322
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
2423
sp-core = { version = "21.0.0", path = "../../../primitives/core" }

bin/node/primitives/Cargo.toml

-10
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,12 @@ publish = false
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
17-
"derive",
18-
] }
19-
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
20-
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
21-
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../../primitives/application-crypto" }
2216
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
2317
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
2418

2519
[features]
2620
default = ["std"]
2721
std = [
28-
"codec/std",
29-
"frame-system/std",
30-
"scale-info/std",
31-
"sp-application-crypto/std",
3222
"sp-core/std",
3323
"sp-runtime/std",
3424
]

bin/node/testing/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pallet-asset-conversion = { version = "4.0.0-dev", path = "../../../frame/asset-
2626
pallet-assets = { version = "4.0.0-dev", path = "../../../frame/assets" }
2727
pallet-asset-conversion-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
2828
pallet-asset-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-tx-payment" }
29-
pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" }
3029
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
3130
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
3231
sc-client-db = { version = "0.10.0-dev", features = ["rocksdb"], path = "../../../client/db" }

client/authority-discovery/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ thiserror = "1.0"
3030
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
3131
sc-client-api = { version = "4.0.0-dev", path = "../api" }
3232
sc-network = { version = "0.10.0-dev", path = "../network/" }
33-
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
3433
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
3534
sp-authority-discovery = { version = "4.0.0-dev", path = "../../primitives/authority-discovery" }
3635
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }

client/cli/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ sc-client-api = { version = "4.0.0-dev", path = "../api" }
3434
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
3535
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
3636
sc-network = { version = "0.10.0-dev", path = "../network" }
37-
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
3837
sc-service = { version = "0.10.0-dev", default-features = false, path = "../service" }
3938
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
4039
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }

client/consensus/babe/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ sc-client-api = { version = "4.0.0-dev", path = "../../api" }
3030
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
3131
sc-consensus-epochs = { version = "0.10.0-dev", path = "../epochs" }
3232
sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" }
33-
sc-keystore = { version = "4.0.0-dev", path = "../../keystore" }
3433
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
3534
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
3635
sp-application-crypto = { version = "23.0.0", path = "../../../primitives/application-crypto" }

client/consensus/beefy/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ wasm-timer = "0.2.5"
2222
prometheus = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
2323
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
2424
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
25-
sc-keystore = { version = "4.0.0-dev", path = "../../keystore" }
2625
sc-network = { version = "0.10.0-dev", path = "../../network" }
27-
sc-network-common = { version = "0.10.0-dev", path = "../../network/common" }
2826
sc-network-gossip = { version = "0.10.0-dev", path = "../../network-gossip" }
2927
sc-network-sync = { version = "0.10.0-dev", path = "../../network/sync" }
3028
sc-utils = { version = "4.0.0-dev", path = "../../utils" }

client/network/Cargo.toml

-8
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ ip_network = "0.4.1"
2828
libp2p = { version = "0.51.3", features = ["dns", "identify", "kad", "macros", "mdns", "noise", "ping", "tcp", "tokio", "yamux", "websocket", "request-response"] }
2929
linked_hash_set = "0.1.3"
3030
log = "0.4.17"
31-
lru = "0.10.0"
3231
mockall = "0.11.3"
3332
parking_lot = "0.12.1"
3433
partial_sort = "0.2.0"
@@ -41,20 +40,13 @@ thiserror = "1.0"
4140
unsigned-varint = { version = "0.7.1", features = ["futures", "asynchronous_codec"] }
4241
zeroize = "1.4.3"
4342
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
44-
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
4543
sc-client-api = { version = "4.0.0-dev", path = "../api" }
46-
sc-consensus = { version = "0.10.0-dev", path = "../consensus/common" }
4744
sc-network-common = { version = "0.10.0-dev", path = "./common" }
4845
sc-utils = { version = "4.0.0-dev", path = "../utils" }
4946
sp-arithmetic = { version = "16.0.0", path = "../../primitives/arithmetic" }
5047
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
51-
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
5248
sp-core = { version = "21.0.0", path = "../../primitives/core" }
5349
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
54-
# Force 0.9.2 as snow release to fix the compilation.
55-
#
56-
# When libp2p also enforces this version, we can get rid off this extra dep here.
57-
snow = "0.9.2"
5850
wasm-timer = "0.2"
5951

6052
[dev-dependencies]

client/network/bitswap/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ thiserror = "1.0"
2626
unsigned-varint = { version = "0.7.1", features = ["futures", "asynchronous_codec"] }
2727
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
2828
sc-network = { version = "0.10.0-dev", path = "../" }
29-
sc-network-common = { version = "0.10.0-dev", path = "../common" }
3029
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
3130
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
3231

client/network/common/Cargo.toml

-10
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,17 @@ targets = ["x86_64-unknown-linux-gnu"]
1616
prost-build = "0.11"
1717

1818
[dependencies]
19-
array-bytes = "4.1"
2019
async-trait = "0.1.57"
2120
bitflags = "1.3.2"
22-
bytes = "1"
2321
codec = { package = "parity-scale-codec", version = "3.6.1", features = [
2422
"derive",
2523
] }
2624
futures = "0.3.21"
27-
futures-timer = "3.0.2"
2825
libp2p-identity = { version = "0.1.2", features = ["peerid"] }
29-
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
30-
smallvec = "1.8.0"
3126
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
32-
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
33-
serde = { version = "1.0.163", features = ["derive"] }
3427
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
3528
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
3629
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
37-
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
38-
thiserror = "1.0"
39-
zeroize = "1.4.3"
4030

4131
[dev-dependencies]
4232
tempfile = "3.1.0"

client/network/light/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ prost = "0.11"
2828
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
2929
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
3030
sc-network = { version = "0.10.0-dev", path = "../" }
31-
sc-network-common = { version = "0.10.0-dev", path = "../common" }
3231
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
3332
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
3433
thiserror = "1.0"

client/network/statement/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive
1919
futures = "0.3.21"
2020
libp2p = "0.51.3"
2121
log = "0.4.17"
22-
pin-project = "1.0.12"
2322
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
2423
sc-network-common = { version = "0.10.0-dev", path = "../common" }
2524
sc-network = { version = "0.10.0-dev", path = "../" }
26-
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
2725
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
2826
sp-statement-store = { version = "4.0.0-dev", path = "../../../primitives/statement-store" }

client/network/test/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ sc-network-sync = { version = "0.10.0-dev", path = "../sync" }
3232
sc-service = { version = "0.10.0-dev", default-features = false, features = ["test-helpers"], path = "../../service" }
3333
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
3434
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
35-
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
3635
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
3736
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
3837
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }

client/offchain/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ threadpool = "1.7"
3030
tracing = "0.1.29"
3131
sc-client-api = { version = "4.0.0-dev", path = "../api" }
3232
sc-network = { version = "0.10.0-dev", path = "../network" }
33-
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
3433
sc-utils = { version = "4.0.0-dev", path = "../utils" }
3534
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
3635
sp-core = { version = "21.0.0", path = "../../primitives/core" }

client/service/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ sc-offchain = { version = "4.0.0-dev", path = "../offchain" }
7373
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev" }
7474
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
7575
sc-sysinfo = { version = "6.0.0-dev", path = "../sysinfo" }
76-
sc-storage-monitor = { version = "0.1.0", path = "../storage-monitor" }
7776
tracing = "0.1.29"
7877
tracing-futures = { version = "0.2.4" }
7978
async-trait = "0.1.57"

client/service/test/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../..
2727
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
2828
sc-executor = { version = "0.10.0-dev", path = "../../executor" }
2929
sc-network = { version = "0.10.0-dev", path = "../../network" }
30-
sc-network-common = { version = "0.10.0-dev", path = "../../network/common" }
3130
sc-network-sync = { version = "0.10.0-dev", path = "../../network/sync" }
3231
sc-service = { version = "0.10.0-dev", features = ["test-helpers"], path = "../../service" }
3332
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }

client/statement-store/Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ readme = "README.md"
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
async-trait = "0.1.57"
17-
codec = { package = "parity-scale-codec", version = "3.6.1" }
18-
futures = "0.3.21"
19-
futures-timer = "3.0.2"
2016
log = "0.4.17"
2117
parking_lot = "0.12.1"
2218
parity-db = "0.4.8"
@@ -27,7 +23,6 @@ sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
2723
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
2824
sp-core = { version = "21.0.0", path = "../../primitives/core" }
2925
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
30-
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
3126
sc-client-api = { version = "4.0.0-dev", path = "../api" }
3227

3328
[dev-dependencies]

client/storage-monitor/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ homepage = "https://substrate.io"
1010

1111
[dependencies]
1212
clap = { version = "4.2.5", features = ["derive", "string"] }
13-
futures = "0.3.21"
1413
log = "0.4.17"
1514
fs4 = "0.6.3"
1615
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
17-
sc-utils = { version = "4.0.0-dev", path = "../utils" }
1816
sp-core = { version = "21.0.0", path = "../../primitives/core" }
1917
tokio = "1.22.0"
2018
thiserror = "1.0.30"

client/tracing/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ tracing = "0.1.29"
2828
tracing-log = "0.1.3"
2929
tracing-subscriber = { version = "0.2.25", features = ["parking_lot"] }
3030
sc-client-api = { version = "4.0.0-dev", path = "../api" }
31-
sc-rpc-server = { version = "4.0.0-dev", path = "../rpc-servers" }
3231
sc-tracing-proc-macro = { version = "4.0.0-dev", path = "./proc-macro" }
3332
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
3433
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }

primitives/application-crypto/test/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ sp-api = { version = "4.0.0-dev", path = "../../api" }
1717
sp-application-crypto = { version = "23.0.0", path = "../" }
1818
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
1919
sp-keystore = { version = "0.27.0", default-features = false, path = "../../keystore" }
20-
sp-runtime = { version = "24.0.0", path = "../../runtime" }
2120
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }

primitives/arithmetic/fuzzer/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ arbitrary = "1.3.0"
1818
fraction = "0.13.1"
1919
honggfuzz = "0.5.49"
2020
num-bigint = "0.4.3"
21-
num-traits = "0.2.15"
22-
primitive-types = "0.12.0"
2321
sp-arithmetic = { version = "16.0.0", path = ".." }
2422

2523
[[bin]]

primitives/block-builder/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ readme = "README.md"
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
1716
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
1817
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
1918
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
@@ -22,7 +21,6 @@ sp-std = { version = "8.0.0", default-features = false, path = "../std" }
2221
[features]
2322
default = [ "std" ]
2423
std = [
25-
"codec/std",
2624
"sp-api/std",
2725
"sp-inherents/std",
2826
"sp-runtime/std",

primitives/consensus/aura/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
1818
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
1919
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
2020
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../application-crypto" }
21-
sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" }
2221
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
2322
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
2423
sp-runtime = { version = "24.0.0", default-features = false, path = "../../runtime" }
@@ -33,7 +32,6 @@ std = [
3332
"scale-info/std",
3433
"sp-api/std",
3534
"sp-application-crypto/std",
36-
"sp-consensus",
3735
"sp-consensus-slots/std",
3836
"sp-inherents/std",
3937
"sp-runtime/std",

primitives/consensus/babe/Cargo.toml

-4
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ scale-info = { version = "2.5.0", default-features = false, features = ["derive"
1919
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"], optional = true }
2020
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
2121
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../application-crypto" }
22-
sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" }
2322
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
2423
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
2524
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
26-
sp-keystore = { version = "0.27.0", default-features = false, optional = true, path = "../../keystore" }
2725
sp-runtime = { version = "24.0.0", default-features = false, path = "../../runtime" }
2826
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
2927
sp-timestamp = { version = "4.0.0-dev", optional = true, path = "../../timestamp" }
@@ -37,11 +35,9 @@ std = [
3735
"serde/std",
3836
"sp-api/std",
3937
"sp-application-crypto/std",
40-
"sp-consensus",
4138
"sp-consensus-slots/std",
4239
"sp-core/std",
4340
"sp-inherents/std",
44-
"sp-keystore",
4541
"sp-runtime/std",
4642
"sp-std/std",
4743
"sp-timestamp",

primitives/core/hashing/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ digest = { version = "0.10.3", default-features = false }
1919
sha2 = { version = "0.10.2", default-features = false }
2020
sha3 = { version = "0.10.0", default-features = false }
2121
twox-hash = { version = "1.6.3", default-features = false, features = ["digest_0_10"] }
22-
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
2322

2423
[features]
2524
default = ["std"]
@@ -29,6 +28,5 @@ std = [
2928
"byteorder/std",
3029
"sha2/std",
3130
"sha3/std",
32-
"sp-std/std",
3331
"twox-hash/std",
3432
]

0 commit comments

Comments
 (0)