feat: initialize Kurdistan SDK - independent fork of Polkadot SDK
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
[package]
|
||||
name = "sp-state-machine"
|
||||
version = "0.35.0"
|
||||
authors.workspace = true
|
||||
description = "Substrate State Machine"
|
||||
edition.workspace = true
|
||||
license = "Apache-2.0"
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
documentation = "https://docs.rs/sp-state-machine"
|
||||
readme = "README.md"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
arbitrary = { features = ["derive"], optional = true, workspace = true }
|
||||
codec = { workspace = true }
|
||||
hash-db = { workspace = true }
|
||||
log = { workspace = true }
|
||||
parking_lot = { optional = true, workspace = true, default-features = true }
|
||||
rand = { optional = true, workspace = true, default-features = true }
|
||||
smallvec = { workspace = true, default-features = true }
|
||||
sp-core = { workspace = true }
|
||||
sp-externalities = { workspace = true }
|
||||
sp-panic-handler = { optional = true, workspace = true, default-features = true }
|
||||
sp-trie = { workspace = true }
|
||||
thiserror = { optional = true, workspace = true }
|
||||
tracing = { optional = true, workspace = true, default-features = true }
|
||||
trie-db = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
arbitrary = { features = ["derive"], workspace = true }
|
||||
array-bytes = { workspace = true, default-features = true }
|
||||
assert_matches = { workspace = true }
|
||||
pretty_assertions = { workspace = true }
|
||||
rand = { workspace = true, default-features = true }
|
||||
sp-runtime = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
fuzzing = ["arbitrary"]
|
||||
std = [
|
||||
"codec/std",
|
||||
"hash-db/std",
|
||||
"log/std",
|
||||
"parking_lot",
|
||||
"rand",
|
||||
"sp-core/std",
|
||||
"sp-externalities/std",
|
||||
"sp-panic-handler",
|
||||
"sp-runtime/std",
|
||||
"sp-trie/std",
|
||||
"thiserror",
|
||||
"tracing",
|
||||
"trie-db/std",
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"sp-runtime/runtime-benchmarks",
|
||||
"sp-trie/runtime-benchmarks",
|
||||
]
|
||||
Reference in New Issue
Block a user