mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 00:28:01 +00:00
87927bbd7c
[`arbitrary_precision`](https://github.com/serde-rs/json/blob/6d44b9fac9269b4decf76acac5d68e8ec9d10c58/Cargo.toml#L69-L75) feature allows to (de-)serialize big numbers w/o error. For some details refer also to https://github.com/paritytech/polkadot-sdk/pull/1256#discussion_r1455564450 fixes: #2963
27 lines
755 B
TOML
27 lines
755 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"
|
|
|
|
[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 = { version = "1.0.111", default-features = false, features = ["alloc", "arbitrary_precision"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["serde_json/std", "sp-api/std", "sp-runtime/std", "sp-std/std"]
|