mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +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>
117 lines
4.7 KiB
TOML
117 lines
4.7 KiB
TOML
[package]
|
|
name = "substrate-test-runtime"
|
|
version = "2.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
build = "build.rs"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-application-crypto = { path = "../../primitives/application-crypto", default-features = false, features = ["serde"] }
|
|
sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false, features = ["serde"] }
|
|
sp-consensus-babe = { path = "../../primitives/consensus/babe", default-features = false, features = ["serde"] }
|
|
sp-genesis-builder = { path = "../../primitives/genesis-builder", default-features = false }
|
|
sp-block-builder = { path = "../../primitives/block-builder", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
|
sp-inherents = { path = "../../primitives/inherents", default-features = false }
|
|
sp-keyring = { path = "../../primitives/keyring", optional = true }
|
|
sp-offchain = { path = "../../primitives/offchain", default-features = false }
|
|
sp-core = { path = "../../primitives/core", default-features = false }
|
|
sp-crypto-hashing = { path = "../../primitives/crypto/hashing", default-features = false }
|
|
sp-std = { path = "../../primitives/std", default-features = false }
|
|
sp-io = { path = "../../primitives/io", default-features = false }
|
|
frame-support = { path = "../../frame/support", default-features = false }
|
|
sp-version = { path = "../../primitives/version", default-features = false }
|
|
sp-session = { path = "../../primitives/session", default-features = false }
|
|
sp-api = { path = "../../primitives/api", default-features = false }
|
|
sp-runtime = { path = "../../primitives/runtime", default-features = false, features = ["serde"] }
|
|
pallet-babe = { path = "../../frame/babe", default-features = false }
|
|
pallet-balances = { path = "../../frame/balances", default-features = false }
|
|
frame-executive = { path = "../../frame/executive", default-features = false }
|
|
frame-system = { path = "../../frame/system", default-features = false }
|
|
frame-system-rpc-runtime-api = { path = "../../frame/system/rpc/runtime-api", default-features = false }
|
|
pallet-timestamp = { path = "../../frame/timestamp", default-features = false }
|
|
sp-consensus-grandpa = { path = "../../primitives/consensus/grandpa", default-features = false, features = ["serde"] }
|
|
sp-trie = { path = "../../primitives/trie", default-features = false }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool", default-features = false }
|
|
trie-db = { version = "0.28.0", default-features = false }
|
|
sc-service = { path = "../../client/service", default-features = false, features = ["test-helpers"], optional = true }
|
|
sp-state-machine = { path = "../../primitives/state-machine", default-features = false }
|
|
sp-externalities = { path = "../../primitives/externalities", default-features = false }
|
|
|
|
# 3rd party
|
|
array-bytes = { version = "6.1", optional = true }
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3.21"
|
|
sc-block-builder = { path = "../../client/block-builder" }
|
|
sc-chain-spec = { path = "../../client/chain-spec" }
|
|
sc-executor = { path = "../../client/executor" }
|
|
sc-executor-common = { path = "../../client/executor/common" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
substrate-test-runtime-client = { path = "client" }
|
|
sp-tracing = { path = "../../primitives/tracing" }
|
|
serde = { features = ["alloc", "derive"], workspace = true }
|
|
serde_json = { features = ["alloc"], workspace = true }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../utils/wasm-builder", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
std = [
|
|
"array-bytes",
|
|
"codec/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-babe/std",
|
|
"pallet-balances/std",
|
|
"pallet-timestamp/std",
|
|
"sc-executor/std",
|
|
"sc-service",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"serde_json/std",
|
|
"sp-api/std",
|
|
"sp-application-crypto/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-consensus-babe/std",
|
|
"sp-consensus-grandpa/std",
|
|
"sp-core/std",
|
|
"sp-crypto-hashing/std",
|
|
"sp-externalities/std",
|
|
"sp-genesis-builder/std",
|
|
"sp-inherents/std",
|
|
"sp-io/std",
|
|
"sp-keyring",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-state-machine/std",
|
|
"sp-std/std",
|
|
"sp-tracing/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-trie/std",
|
|
"sp-version/std",
|
|
"substrate-wasm-builder",
|
|
"trie-db/std",
|
|
]
|
|
# Special feature to disable logging
|
|
disable-logging = ["sp-api/disable-logging"]
|