mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-30 17:47:23 +00:00
4ed67e03a4
* WIP: update codec * WIP * compiling * WIP * rename parity-scale-codec to codec * WIP * fix * remove old comments * use published crates * fix expected error msg * bump version * fmt and fix * remove old comment * fix wrong decoding impl * implement encode like for structures * undo removal of old pending changes * trailingzeroinput * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> Co-Authored-By: DemiMarie-parity <48690212+DemiMarie-parity@users.noreply.github.com> * update codec * fmt * version is 1.0.0 * show more error * fmt
25 lines
640 B
TOML
25 lines
640 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.8.0"
|
|
hash-db = "0.15.0"
|
|
trie-db = "0.15.0"
|
|
trie-root = "0.15.0"
|
|
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"
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.2.0"
|
|
|
|
[features]
|
|
default = []
|