mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-09 05:57: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
26 lines
683 B
TOML
26 lines
683 B
TOML
[package]
|
|
name = "sp-transaction-pool"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Transaction pool runtime facing API."
|
|
documentation = "https://docs.rs/sp-transaction-pool"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-api = { version = "3.0.0", default-features = false, path = "../api" }
|
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-api/std",
|
|
"sp-runtime/std",
|
|
]
|