Files
pezkuwi-subxt/substrate/primitives/genesis-builder/Cargo.toml
T
Michal Kucharczyk 305aefc43d serde_json: bumped to 1.0.108 (#2168)
This PR updates the version of `serde_json` to `1.0.108` throughout the
codebase.
2023-11-06 14:00:06 +02:00

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" ]