Cargo.toml 4.56 KB
Newer Older
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
1
2
[package]
name = "polkadot-service"
Gav Wood's avatar
Gav Wood committed
3
version = "0.7.28"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
4
authors = ["Parity Technologies <admin@parity.io>"]
5
edition = "2018"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
6
7

[dependencies]
8
parking_lot = "0.9.0"
9
serde = { version = "1.0.102", features = ["derive"] }
10
11
lazy_static = "1.4.0"
log = "0.4.8"
Gavin Wood's avatar
Gavin Wood committed
12
futures = "0.3.4"
13
14
slog = "2.5.2"
hex-literal = "0.2.1"
Ashley's avatar
Ashley committed
15
16
av_store = { package = "polkadot-availability-store", path = "../availability-store", optional = true }
consensus = { package = "polkadot-validation", path = "../validation", optional = true }
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
17
polkadot-primitives = { path = "../primitives" }
18
19
polkadot-runtime = { path = "../runtime/polkadot" }
kusama-runtime = { path = "../runtime/kusama" }
Ashley's avatar
Ashley committed
20
polkadot-network = { path = "../network", optional = true }
21
polkadot-rpc = { path = "../rpc" }
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { 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-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "master" }
authority-discovery = { package = "sc-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master" }
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master" }
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master" }
52
codec = { package = "parity-scale-codec", version = "1.3.0" }
53
54
55
56
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
57

58
59
[dev-dependencies]
polkadot-test-runtime-client = { path = "../runtime/test-runtime/client" }
60
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
61

62
[features]
Ashley's avatar
Ashley committed
63
default = ["rocksdb", "full-node"]
64
rocksdb = ["service/rocksdb"]
65
runtime-benchmarks = ["polkadot-runtime/runtime-benchmarks", "kusama-runtime/runtime-benchmarks"]
Ashley's avatar
Ashley committed
66
full-node = ["av_store", "consensus", "polkadot-network"]