[package]
name = "rootchain-core"
version = "1.0.2"
description = "Core types and foundational data structures for the RootChain ecosystem."
repository = "https://github.com/BronzonTech-Cloud/rootchain"
license = "MIT"
authors = ["Charles Bronzon"]
edition = "2021"
keywords = ["rootchain", "blockchain", "core", "types"]
[dependencies]
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0", default-features = false, optional = true, features = ["alloc"] }
bincode = { version = "2.0.0-rc.3", default-features = false, features = ["serde", "alloc"] }
hex = { version = "0.4", default-features = false, features = ["alloc"] }
thiserror = { version = "1.0", optional = true }
ed25519-dalek = { version = "2.1", default-features = false, features = ["rand_core", "serde"] }
serde-big-array = "0.5.1"
rand_core = { version = "0.6", default-features = false }
[features]
default = ["std"]
std = [
"serde/std",
"serde_json/std",
"bincode/std",
"hex/std",
"thiserror",
"ed25519-dalek/std",
"rand_core/getrandom",
]
test-utils = []