mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
7d5202341b
* basic lint * lint ordering
57 lines
1.7 KiB
TOML
57 lines
1.7 KiB
TOML
[package]
|
|
name = "sp-state-machine"
|
|
version = "0.12.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate State Machine"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
documentation = "https://docs.rs/sp-state-machine"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
|
hash-db = { version = "0.15.2", default-features = false }
|
|
log = { version = "0.4.16", optional = true }
|
|
num-traits = { version = "0.2.8", default-features = false }
|
|
parking_lot = { version = "0.12.0", optional = true }
|
|
rand = { version = "0.7.2", optional = true }
|
|
smallvec = "1.8.0"
|
|
thiserror = { version = "1.0.30", optional = true }
|
|
tracing = { version = "0.1.29", optional = true }
|
|
trie-root = { version = "0.17.0", default-features = false }
|
|
sp-core = { version = "6.0.0", default-features = false, path = "../core" }
|
|
sp-externalities = { version = "0.12.0", default-features = false, path = "../externalities" }
|
|
sp-panic-handler = { version = "4.0.0", optional = true, path = "../panic-handler" }
|
|
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
|
|
sp-trie = { version = "6.0.0", default-features = false, path = "../trie" }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.3.4"
|
|
pretty_assertions = "1.0.0"
|
|
rand = "0.7.2"
|
|
sp-runtime = { version = "6.0.0", path = "../runtime" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"hash-db/std",
|
|
"log",
|
|
"num-traits/std",
|
|
"parking_lot",
|
|
"rand",
|
|
"sp-core/std",
|
|
"sp-externalities/std",
|
|
"sp-panic-handler",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
"thiserror",
|
|
"tracing",
|
|
"trie-root/std",
|
|
]
|