mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
44 lines
1.7 KiB
TOML
44 lines
1.7 KiB
TOML
[package]
|
|
name = "sc-chain-spec"
|
|
version = "27.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Substrate chain configurations."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
memmap2 = "0.9.3"
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
sc-client-api = { path = "../api" }
|
|
sc-chain-spec-derive = { path = "derive" }
|
|
sc-executor = { path = "../executor" }
|
|
sp-io = { default-features = false, path = "../../primitives/io" }
|
|
sc-network = { path = "../network" }
|
|
sc-telemetry = { path = "../telemetry" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-crypto-hashing = { path = "../../primitives/crypto/hashing" }
|
|
sp-genesis-builder = { path = "../../primitives/genesis-builder" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sp-state-machine = { path = "../../primitives/state-machine" }
|
|
log = { workspace = true }
|
|
array-bytes = { version = "6.1" }
|
|
docify = "0.2.7"
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
|
sp-keyring = { path = "../../primitives/keyring" }
|
|
sp-application-crypto = { default-features = false, path = "../../primitives/application-crypto", features = ["serde"] }
|
|
sp-consensus-babe = { default-features = false, path = "../../primitives/consensus/babe", features = ["serde"] }
|