Skip to content

Commit 017f23e

Browse files
author
José Molina
committed
Remove unused dependencies
1 parent 3da589d commit 017f23e

File tree

3 files changed

+0
-23
lines changed

3 files changed

+0
-23
lines changed

Cargo.lock

Lines changed: 0 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "pol
9090
sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
9191
sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
9292
sc-network = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
93-
sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
94-
sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
9593
sc-service = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
9694
sc-sysinfo = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
9795
sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
@@ -136,12 +134,8 @@ cumulus-pallet-session-benchmarking = { git = "https://github.com/paritytech/pol
136134
cumulus-pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
137135
cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
138136
cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
139-
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
140137
cumulus-primitives-utility = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
141-
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
142138
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
143-
cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
144-
cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
145139
parachain-info = { package = "staging-parachain-info", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
146140
parachains-common = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
147141

@@ -152,7 +146,6 @@ polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polk
152146
polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
153147
polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
154148
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
155-
polkadot-service = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1" }
156149
xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
157150
xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }
158151
xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2412-1", default-features = false }

node/Cargo.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ color-print = { workspace = true }
1515
futures = { workspace = true }
1616
jsonrpsee = { workspace = true }
1717
log = { workspace = true }
18-
parity-scale-codec = { workspace = true }
1918
serde = { workspace = true }
2019
serde_json = { workspace = true }
2120
hex-literal = { workspace = true }
@@ -36,9 +35,7 @@ sc-client-api = { workspace = true }
3635
sc-consensus = { workspace = true }
3736
sc-executor = { workspace = true }
3837
sc-network = { workspace = true }
39-
sc-network-sync = { workspace = true }
4038
sc-offchain = { workspace = true }
41-
sc-rpc = { workspace = true }
4239
sc-service = { workspace = true }
4340
sc-sysinfo = { workspace = true }
4441
sc-telemetry = { workspace = true }
@@ -63,7 +60,6 @@ substrate-prometheus-endpoint = { workspace = true }
6360
# Polkadot
6461
polkadot-cli = { workspace = true }
6562
polkadot-primitives = { workspace = true }
66-
polkadot-service = { workspace = true }
6763
xcm = { workspace = true, default-features = false }
6864

6965
# Cumulus
@@ -74,12 +70,8 @@ cumulus-client-consensus-common = { workspace = true }
7470
cumulus-client-collator = { workspace = true }
7571
cumulus-client-service = { workspace = true }
7672
cumulus-primitives-core = { workspace = true }
77-
cumulus-primitives-parachain-inherent = { workspace = true }
7873
cumulus-client-consensus-proposer = { workspace = true }
79-
cumulus-relay-chain-inprocess-interface = { workspace = true }
8074
cumulus-relay-chain-interface = { workspace = true }
81-
cumulus-relay-chain-minimal-node = { workspace = true }
82-
cumulus-relay-chain-rpc-interface = { workspace = true }
8375

8476
[build-dependencies]
8577
substrate-build-script-utils = { workspace = true }

0 commit comments

Comments
 (0)