mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 10:18:02 +00:00
26 lines
1.1 KiB
TOML
26 lines
1.1 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="616b40150ded71f57f650067fcbc5c99d7c343e6" }
|
|
kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" }
|
|
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.1"
|
|
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="616b40150ded71f57f650067fcbc5c99d7c343e6" }
|
|
substrate-keyring = { path = "../../keyring" }
|
|
substrate-test-client = { path = "../../test-client" }
|