mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
305aefc43d
This PR updates the version of `serde_json` to `1.0.108` throughout the codebase.
24 lines
707 B
TOML
24 lines
707 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"
|
|
|
|
[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.108", default-features = false, features = ["alloc"] }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "serde_json/std", "sp-api/std", "sp-runtime/std", "sp-std/std" ]
|