mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14: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>
53 lines
1.8 KiB
TOML
53 lines
1.8 KiB
TOML
[package]
|
|
name = "sc-transaction-pool"
|
|
version = "28.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 transaction pool implementation."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.74"
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
linked-hash-map = "0.5.4"
|
|
log = { workspace = true, default-features = true }
|
|
parking_lot = "0.12.1"
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
|
sc-client-api = { path = "../api" }
|
|
sc-transaction-pool-api = { path = "api" }
|
|
sc-utils = { path = "../utils" }
|
|
sp-api = { path = "../../primitives/api" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-crypto-hashing = { path = "../../primitives/crypto/hashing" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sp-tracing = { path = "../../primitives/tracing" }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
array-bytes = "6.1"
|
|
assert_matches = "1.3.0"
|
|
criterion = "0.4.0"
|
|
sc-block-builder = { path = "../block-builder" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
|
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
|
substrate-test-runtime-transaction-pool = { path = "../../test-utils/runtime/transaction-pool" }
|
|
|
|
[[bench]]
|
|
name = "basics"
|
|
harness = false
|