[package] name = "sp-genesis-builder" version = "0.1.0" authors = ["Parity Technologies "] edition = "2021" license = "Apache-2.0" homepage = "https://substrate.io" repository = "https://github.com/paritytech/substrate/" description = "Substrate GenesisConfig builder API" readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" } sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" } sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" } serde_json = { version = "1.0.85", default-features = false, features = ["alloc"] } [features] default = [ "std" ] std = [ "sp-api/std", "sp-std/std", "serde_json/std", ]