Cargo.toml 4.53 KiB
Newer Older
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
[package]
name = "polkadot-service"
André Silva's avatar
André Silva committed
version = "0.7.13"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed

[dependencies]
parking_lot = "0.9.0"
serde = { version = "1.0.102", features = ["derive"] }
lazy_static = "1.4.0"
log = "0.4.8"
futures = "0.3.1"
futures01 = { package = "futures", version = "0.1.29" }
slog = "2.5.2"
hex-literal = "0.2.1"
av_store = { package = "polkadot-availability-store", path = "../availability-store" }
consensus = { package = "polkadot-validation", path = "../validation" }
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
polkadot-primitives = { path = "../primitives" }
polkadot-runtime = { path = "../runtime/polkadot" }
kusama-runtime = { path = "../runtime/kusama" }
polkadot-network = { path = "../network"  }
polkadot-rpc = { path = "../rpc" }
Ashley's avatar
Ashley committed
sp-io = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
client-db = { package = "sc-client-db", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
Ashley's avatar
Ashley committed
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils", default-features = false }
Ashley's avatar
Ashley committed
telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
authority-discovery = { package = "sc-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
codec = { package = "parity-scale-codec", version = "1.1.0" }
Ashley's avatar
Ashley committed
sp-session = { git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "ashley-browser-utils" }

[features]
default = ["rocksdb"]
rocksdb = ["service/rocksdb"]