diff --git a/Cargo.lock b/Cargo.lock index e28f83688a..7e21d388d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1598,29 +1598,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "cumulus-client-consensus-relay-chain" -version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" -dependencies = [ - "async-trait", - "cumulus-client-consensus-common", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", - "futures 0.3.28", - "parking_lot 0.12.1", - "sc-consensus", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", - "tracing", -] - [[package]] name = "cumulus-client-network" version = "0.1.0" @@ -5168,10 +5145,8 @@ dependencies = [ "clap", "core-primitives", "cumulus-client-cli", - "cumulus-client-collator", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", - "cumulus-client-consensus-relay-chain", "cumulus-client-network", "cumulus-client-service", "cumulus-primitives-core", @@ -5179,19 +5154,16 @@ dependencies = [ "cumulus-relay-chain-inprocess-interface", "cumulus-relay-chain-interface", "cumulus-relay-chain-minimal-node", - "cumulus-relay-chain-rpc-interface", "fc-consensus", "fc-db", "fc-mapping-sync", "fc-rpc", "fc-rpc-core", "fc-storage", - "fp-consensus", "fp-rpc", "frame-benchmarking", "frame-benchmarking-cli", "futures 0.3.28", - "hex-literal 0.4.1", "jsonrpsee", "litentry-parachain-runtime", "litmus-parachain-runtime", @@ -5202,12 +5174,8 @@ dependencies = [ "moonbeam-rpc-primitives-txpool", "moonbeam-rpc-trace", "moonbeam-rpc-txpool", - "pallet-ethereum", - "pallet-evm", "pallet-transaction-payment-rpc", - "parity-scale-codec", "polkadot-cli", - "polkadot-parachain", "polkadot-primitives", "polkadot-service", "rococo-parachain-runtime", @@ -5235,7 +5203,6 @@ dependencies = [ "sp-consensus", "sp-consensus-aura", "sp-core", - "sp-inherents", "sp-io", "sp-keystore", "sp-offchain", diff --git a/node/Cargo.toml b/node/Cargo.toml index 8c12ab90d8..aa75267bf0 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -18,9 +18,7 @@ targets = ['x86_64-unknown-linux-gnu'] [dependencies] async-trait = "0.1.73" clap = { version = "4.3", features = ["derive"] } -codec = { package = "parity-scale-codec", version = "3.0.0" } futures = { version = "0.3.28", features = ["compat"] } -hex-literal = "0.4.1" log = "0.4" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" @@ -48,7 +46,6 @@ sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "pol sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" } sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" } sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" } sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" } @@ -71,10 +68,7 @@ fc-mapping-sync = { git = "https://github.com/paritytech/frontier", branch = "po fc-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.39", default-features = false } fc-rpc-core = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.39" } fc-storage = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.39" } -fp-consensus = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.39" } fp-rpc = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.39", default-features = false } -pallet-ethereum = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.39", default-features = false } -pallet-evm = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0.9.39", default-features = false } # evm-tracing # Moonbeam Team did not export its corresponding code @@ -90,10 +84,8 @@ moonbeam-rpc-txpool = { git = "https://github.com/litentry/astar-frame", branch # Cumulus dependencies cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } -cumulus-client-collator = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } -cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } @@ -101,11 +93,9 @@ cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/c cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } -cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39" } # Polkadot dependencies polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39" } xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.39" }