mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 23:28:00 +00:00
f441a5fc93
Signed-off-by: alvicsam <alvicsam@gmail.com>
24 lines
753 B
TOML
24 lines
753 B
TOML
[package]
|
|
name = "sp-genesis-builder"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
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 = { path = "../api", default-features = false}
|
|
sp-runtime = { path = "../runtime", default-features = false}
|
|
sp-std = { path = "../std", default-features = false}
|
|
serde_json = { version = "1.0.85", default-features = false, features = ["alloc"] }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "serde_json/std", "sp-api/std", "sp-runtime/std", "sp-std/std" ]
|