rootchain-std 1.0.2

Standard library for RootChain smart contracts, providing utilities for state management, events, and entry points.
Documentation
[package]
name = "rootchain-std"
version = "1.0.2"
description = "Standard library for RootChain smart contracts, providing utilities for state management, events, and entry points."
repository = "https://github.com/BronzonTech-Cloud/rootchain"
license = "MIT"
authors = ["BronzonTech"]
edition = "2021"
keywords = ["rootchain", "blockchain", "wasm", "smart-contract"]

[dependencies]
serde = { version = "1.0", default-features = false, features = ["derive"] }
rootchain-core = { path = "../rootchain-core", version = "1.0.2", default-features = false }
rootchain-macros = { path = "../rootchain-macros", version = "1.0.2" }
bincode = { version = "2.0.0-rc.3", default-features = false, features = ["serde", "alloc"] }
hex = { version = "0.4.3", default-features = false }
lol_alloc = "0.4.0"

[lib]
crate-type = ["cdylib", "rlib"]

[features]
default = []
std = ["serde/std", "rootchain-core/std"]
test-utils = []