mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
c367ac2488
# Description Removed deprecated type `GenesisConfig` from the codebase. Closes https://github.com/paritytech/polkadot-sdk/issues/175 # Checklist - [x] My PR includes a detailed description as outlined in the "Description" section above - [x] My PR follows the [labeling requirements](CONTRIBUTING.md#Process) of this project (at minimum one label for `T` required) - [x] I have made corresponding changes to the documentation (if applicable) --------- Co-authored-by: Liam Aharon <liam.aharon@hotmail.com> Co-authored-by: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com>
27 lines
733 B
TOML
27 lines
733 B
TOML
[package]
|
|
name = "sp-genesis-builder"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Substrate RuntimeGenesisConfig 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 = { features = ["alloc", "arbitrary_precision"], workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["serde_json/std", "sp-api/std", "sp-runtime/std", "sp-std/std"]
|