mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 18:41:05 +00:00
96b3a8f92f
* Derive macro for simple structs. * Derive Encode/Decode wherever we can. * Derive for enums. * Support discriminant. * Get rid of some repetition. * Support custom indices. * Derive codec for enums wherever possible. * Fix no_std * WASM rebuilt * Avoid excessive import. * Fix compilation. * Address review grumbles.
27 lines
1.2 KiB
TOML
27 lines
1.2 KiB
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 = { git = "https://github.com/paritytech/parity.git" }
|
|
kvdb-rocksdb = { git = "https://github.com/paritytech/parity.git" }
|
|
ethereum-types = "0.3"
|
|
hashdb = { git = "https://github.com/paritytech/parity.git" }
|
|
patricia-trie = { git = "https://github.com/paritytech/parity.git" }
|
|
memorydb = { git = "https://github.com/paritytech/parity.git" }
|
|
substrate-primitives = { path = "../../../substrate/primitives" }
|
|
substrate-runtime-primitives = { path = "../../../substrate/runtime/primitives" }
|
|
substrate-client = { path = "../../../substrate/client" }
|
|
substrate-state-machine = { path = "../../../substrate/state-machine" }
|
|
substrate-runtime-support = { path = "../../../substrate/runtime-support" }
|
|
substrate-codec = { path = "../../../substrate/codec" }
|
|
substrate-codec-derive = { path = "../../../substrate/codec/derive" }
|
|
substrate-executor = { path = "../../../substrate/executor" }
|
|
substrate-state-db = { path = "../../../substrate/state-db" }
|
|
|
|
[dev-dependencies]
|
|
kvdb-memorydb = { git = "https://github.com/paritytech/parity.git" }
|