Files
pezkuwi-subxt/substrate/primitives/genesis-builder/Cargo.toml
T
2024-01-18 20:55:50 +00:00

27 lines
755 B
TOML

[package]
name = "sp-genesis-builder"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage = "https://substrate.io"
repository.workspace = true
description = "Substrate GenesisConfig builder API"
readme = "README.md"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { path = "../api", default-features = false }
sp-runtime = { path = "../runtime", default-features = false }
sp-std = { path = "../std", default-features = false }
serde_json = { version = "1.0.111", default-features = false, features = ["alloc", "arbitrary_precision"] }
[features]
default = ["std"]
std = ["serde_json/std", "sp-api/std", "sp-runtime/std", "sp-std/std"]