diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index 567fceaf6175140f2c5f1b118ac443af854bbe70..bb58d5fd5ed4c4126b028aa37c1dd18244260e94 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -1737,30 +1737,11 @@ dependencies = [ name = "polkadot-cli" version = "0.3.0" dependencies = [ - "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.1.0", - "polkadot-runtime 0.1.0", "polkadot-service 0.3.0", - "polkadot-transaction-pool 0.1.0", - "slog 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-codec 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-extrinsic-pool 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-runtime-primitives 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate)", - "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate)", "tokio 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/polkadot/cli/Cargo.toml b/polkadot/cli/Cargo.toml index cecfe86f5dbdc9a7eb273699b7a546f8d283a1f2..a3ab18f0f575aa24ff3651488421c1ac9d6b0fcc 100644 --- a/polkadot/cli/Cargo.toml +++ b/polkadot/cli/Cargo.toml @@ -5,29 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"] description = "Polkadot node implementation in Rust." [dependencies] -clap = { version = "~2.32", features = ["yaml"] } -error-chain = "0.12" log = "0.3" -slog = "^2" -lazy_static = "1.0" tokio = "0.1.7" futures = "0.1.17" -parking_lot = "0.4" exit-future = "0.1" substrate-cli = { git = "https://github.com/paritytech/substrate" } -substrate-client = { git = "https://github.com/paritytech/substrate" } -substrate-codec = { git = "https://github.com/paritytech/substrate" } -substrate-extrinsic-pool = { git = "https://github.com/paritytech/substrate" } -substrate-network = { git = "https://github.com/paritytech/substrate" } -substrate-primitives = { git = "https://github.com/paritytech/substrate" } -substrate-rpc = { git = "https://github.com/paritytech/substrate" } -substrate-rpc-servers = { git = "https://github.com/paritytech/substrate" } -substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate" } -substrate-service = { git = "https://github.com/paritytech/substrate" } -substrate-state-machine = { git = "https://github.com/paritytech/substrate" } -substrate-telemetry = { git = "https://github.com/paritytech/substrate" } -polkadot-primitives = { path = "../primitives" } -polkadot-runtime = { path = "../runtime" } polkadot-service = { path = "../service" } -polkadot-transaction-pool = { path = "../transaction-pool" } -