ghost-node/pallets/traits/Cargo.toml
Uncle Stretch d83ee59508
let the EXODUS begin...
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2026-08-29 14:48:50 +03:00

33 lines
807 B
TOML

[package]
name = "ghost-traits"
version = "0.4.2"
description = "Shared traits including `GhostHasher`, `NetworkDataBasicHandler`, `BoundedBTreeMap`, `MerkleTree` and more."
license.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
num-traits = { workspace = true }
frost-core = { workspace = true }
rand_chacha = { workspace = true }
frame-support = { workspace = true }
sp-arithmetic = { workspace = true }
sp-runtime = { workspace = true }
sp-core = { workspace = true }
sp-std = { workspace = true }
[features]
default = ["std"]
std = [
"frame-support/std",
"num-traits/std",
"sp-arithmetic/std",
"rand_chacha/std",
"frost-core/std",
"sp-runtime/std",
"sp-core/std",
"sp-std/std",
]