mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-29 14:57:25 +00:00
75a0a3f6fd
When we enabled arbitary precision for `serde_json`, the feature leaked through the whole workspace. The given test fails because of some bug in serde json when the feature is enabled.
16 lines
628 B
TOML
16 lines
628 B
TOML
[package]
|
|
name = "substrate-chain-spec"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
substrate-chain-spec-derive = { path = "./derive" }
|
|
impl-trait-for-tuples = "0.1.3"
|
|
network = { package = "substrate-network", path = "../network" }
|
|
primitives = { package = "substrate-primitives", path = "../../primitives/core" }
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
serde_json = { version = "1.0.41", features = [ "arbitrary_precision" ] }
|
|
sr-primitives = { path = "../../primitives/sr-primitives" }
|
|
tel = { package = "substrate-telemetry", path = "../telemetry" }
|