Files
pezkuwi-subxt/substrate/core/state-machine/Cargo.toml
T
Bastian Köcher 8a39be474e Move Externalities into its own crate (#3775)
* Move `Externalities` into `substrate-externalities`

- `Externalities` now support generic extensions
- Split of `primtives-storage` for storage primitive types

* Move the externalities scoping into `substrate-externalities`

* Fix compilation

* Review feedback

* Adds macro for declaring extensions

* Fix benchmarks

* Introduce `ExtensionStore` trait

* Last review comments

* Implement it for `ExtensionStore`
2019-10-09 15:50:30 +02:00

27 lines
742 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.8"
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.8"
rand = "0.7.2"
externalities = { package = "substrate-externalities", path = "../externalities" }
[dev-dependencies]
hex-literal = "0.2.1"
[features]
default = []