mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 03:27:58 +00:00
beeacf9cfa
* impl Compact<> and HasCompact for Permill Perbill * update parity-codec to 2.2 * add Cargo.lock * add lock and build for runtime * rebuild Cargo.lock after rebase
28 lines
1.2 KiB
TOML
28 lines
1.2 KiB
TOML
[package]
|
|
name = "substrate-client-db"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
parking_lot = "0.7.1"
|
|
log = "0.4"
|
|
kvdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" }
|
|
# FIXME replace with release as soon as our rocksdb changes are released upstream https://github.com/paritytech/parity-common/issues/88
|
|
kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" }
|
|
lru-cache = "0.1"
|
|
hash-db = { git = "https://github.com/paritytech/trie" }
|
|
substrate-primitives = { path = "../../primitives" }
|
|
sr-primitives = { path = "../../sr-primitives" }
|
|
substrate-client = { path = "../../client" }
|
|
substrate-state-machine = { path = "../../state-machine" }
|
|
parity-codec = "2.2"
|
|
parity-codec-derive = "2.1"
|
|
substrate-executor = { path = "../../executor" }
|
|
substrate-state-db = { path = "../../state-db" }
|
|
substrate-trie = { path = "../../trie" }
|
|
|
|
[dev-dependencies]
|
|
kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" }
|
|
substrate-keyring = { path = "../../keyring" }
|
|
substrate-test-client = { path = "../../test-client" }
|