mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
f10d8e177d
* First effort * API versioning * Introduce validate_transaction * Introduce the API plus fixes. * Docs * Typo * Add longevity parameter to transaction validity info.
24 lines
701 B
TOML
24 lines
701 B
TOML
[package]
|
|
name = "substrate-client-db"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
parking_lot = "0.4"
|
|
log = "0.3"
|
|
kvdb = "0.1"
|
|
kvdb-rocksdb = "0.1.3"
|
|
hashdb = "0.2.1"
|
|
memorydb = "0.2.1"
|
|
substrate-primitives = { path = "../../../core/primitives" }
|
|
sr-primitives = { path = "../../../core/sr-primitives" }
|
|
substrate-client = { path = "../../../core/client" }
|
|
substrate-state-machine = { path = "../../../core/state-machine" }
|
|
parity-codec = { version = "1.1" }
|
|
parity-codec-derive = { version = "~1.0" }
|
|
substrate-executor = { path = "../../../core/executor" }
|
|
substrate-state-db = { path = "../../../core/state-db" }
|
|
|
|
[dev-dependencies]
|
|
kvdb-memorydb = "0.1"
|