mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 07:27:55 +00:00
04fcc71809
* primitives/sr-primitives -> primitives/runtime * update
36 lines
1.3 KiB
TOML
36 lines
1.3 KiB
TOML
[package]
|
|
name = "sc-client-db"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parking_lot = "0.9.0"
|
|
log = "0.4.8"
|
|
kvdb = "0.1.1"
|
|
kvdb-rocksdb = { version = "0.2", optional = true }
|
|
kvdb-memorydb = "0.1.2"
|
|
linked-hash-map = "0.5.2"
|
|
hash-db = "0.15.2"
|
|
client-api = { package = "sc-client-api", path = "../api" }
|
|
primitives = { package = "sp-core", path = "../../primitives/core" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
client = { package = "sc-client", path = "../" }
|
|
state-machine = { package = "sp-state-machine", path = "../../primitives/state-machine" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
executor = { package = "sc-executor", path = "../executor" }
|
|
state_db = { package = "sc-state-db", path = "../state-db" }
|
|
trie = { package = "sp-trie", path = "../../primitives/trie" }
|
|
consensus_common = { package = "sp-consensus", path = "../../primitives/consensus/common" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { path = "../../primitives/keyring" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../test/utils/runtime/client" }
|
|
env_logger = "0.7.0"
|
|
quickcheck = "0.9"
|
|
|
|
[features]
|
|
default = []
|
|
test-helpers = []
|