[package] name = "polkadot-cli" version = "0.7.27" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" [package.metadata.wasm-pack.profile.release] # `wasm-opt` has some problems on linux, see # https://github.com/rustwasm/wasm-pack/issues/781 etc. wasm-opt = false [lib] crate-type = ["cdylib", "rlib"] [dependencies] log = "0.4.8" futures = { version = "0.3.4", features = ["compat"] } structopt = "0.3.8" sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } service = { package = "polkadot-service", path = "../service", default-features = false } tokio = { version = "0.2.13", features = ["rt-threaded"], optional = true } frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } wasm-bindgen = { version = "0.2.57", optional = true } wasm-bindgen-futures = { version = "0.4.7", optional = true } browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } [features] default = [ "wasmtime", "rocksdb", "cli" ] wasmtime = [ "sc-cli/wasmtime" ] rocksdb = [ "service/rocksdb" ] cli = [ "tokio", "sc-cli", "frame-benchmarking-cli", "service/full-node", ] browser = [ "wasm-bindgen", "wasm-bindgen-futures", "browser-utils", ] runtime-benchmarks = ["service/runtime-benchmarks"]