mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 03:38:00 +00:00
04eae615b5
* upgrade tokio again * Remove WrappedExecutor * switch to spawn_blocking
43 lines
1.8 KiB
TOML
43 lines
1.8 KiB
TOML
[package]
|
|
name = "polkadot-cli"
|
|
version = "0.7.19"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot node implementation in Rust."
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
structopt = "=0.3.7"
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
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.10", features = ["rt-threaded"], optional = true }
|
|
|
|
wasm-bindgen = { version = "0.2.57", optional = true }
|
|
wasm-bindgen-futures = { version = "0.4.7", optional = true }
|
|
browser-utils = { package = "browser-utils", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true }
|
|
substrate-service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true, default-features = false }
|
|
|
|
[features]
|
|
default = [ "wasmtime", "rocksdb", "cli" ]
|
|
wasmtime = [ "sc-cli/wasmtime" ]
|
|
rocksdb = [ "service/rocksdb" ]
|
|
cli = [ "tokio" ]
|
|
browser = [
|
|
"wasm-bindgen",
|
|
"wasm-bindgen-futures",
|
|
"browser-utils",
|
|
"substrate-service",
|
|
]
|