Cargo.toml 2.21 KB
Newer Older
Gav's avatar
Gav committed
1
2
[package]
name = "polkadot-cli"
Bastian Köcher's avatar
Bastian Köcher committed
3
version = "0.7.29"
Gav's avatar
Gav committed
4
authors = ["Parity Technologies <admin@parity.io>"]
5
description = "Polkadot Relay-chain Client Node"
6
edition = "2018"
Gav's avatar
Gav committed
7

Ashley's avatar
Ashley committed
8
9
10
11
12
[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

13
14
15
[lib]
crate-type = ["cdylib", "rlib"]

Gav's avatar
Gav committed
16
[dependencies]
17
log = "0.4.8"
Gavin Wood's avatar
Gavin Wood committed
18
futures = { version = "0.3.4", features = ["compat"] }
Gavin Wood's avatar
Gavin Wood committed
19
structopt = "0.3.8"
20
21
22
23
24
25
26
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
27
service = { package = "polkadot-service", path = "../service", default-features = false }
Gavin Wood's avatar
Gavin Wood committed
28

29
tokio = { version = "0.2.13", features = ["rt-threaded"], optional = true }
30
31
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
32
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
33

34
35
wasm-bindgen = { version = "0.2.57", optional = true }
wasm-bindgen-futures = { version = "0.4.7", optional = true }
36
browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
37

38
39
40
[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }

Gavin Wood's avatar
Gavin Wood committed
41
[features]
42
43
default = [ "wasmtime", "rocksdb", "cli" ]
wasmtime = [ "sc-cli/wasmtime" ]
44
rocksdb = [ "service/rocksdb" ]
45
46
47
cli = [
	"tokio",
	"sc-cli",
48
	"sc-service",
49
	"frame-benchmarking-cli",
Ashley's avatar
Ashley committed
50
	"service/full-node",
51
]
52
53
54
browser = [
	"wasm-bindgen",
	"wasm-bindgen-futures",
55
	"browser-utils",
56
]
57
runtime-benchmarks = ["service/runtime-benchmarks"]