mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-30 08:27:23 +00:00
2ae9d36758
* Use TransactionPool trait * sc-transaction-pool-primitives * sc-transaction-pool-api * TP * bye sc_transaction_graph * fix line widths * fix import errors * fix import errors * fix import errors 🤦🏾♂️ * fix import errors 🤦🏾♂️🤦🏾♂️🤦🏾♂️ * remove sp-keyring
21 lines
777 B
TOML
21 lines
777 B
TOML
[package]
|
|
name = "sc-transaction-pool-api"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Transaction pool client facing API."
|
|
|
|
[dependencies]
|
|
futures = { version = "0.3.1" }
|
|
log = { version = "0.4.8" }
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
thiserror = { version = "1.0.21" }
|
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
derive_more = { version = "0.99.11" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|