mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 21:17:56 +00:00
a07e567fe1
* Storage tracing * Whitepsaces Co-Authored-By: Sergei Pepyakin <sergei@parity.io> * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Update Cargo.lock
26 lines
655 B
TOML
26 lines
655 B
TOML
[package]
|
|
name = "substrate-state-machine"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate State Machine"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
parking_lot = "0.9.0"
|
|
hash-db = "0.15.2"
|
|
trie-db = "0.15.2"
|
|
trie-root = "0.15.2"
|
|
trie = { package = "substrate-trie", path = "../trie" }
|
|
primitives = { package = "substrate-primitives", path = "../primitives" }
|
|
panic-handler = { package = "substrate-panic-handler", path = "../panic-handler" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
num-traits = "0.2"
|
|
rand = "0.7.1"
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.2.0"
|
|
|
|
[features]
|
|
default = []
|