mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 07:31:08 +00:00
7773daaf5b
* rename crate: sp-transaction-pool-api -> sp-transaction-pool * move primitives/core/derive-debug -> primitives/derive-debug; primitives/core/storage -> primitives/storage * rename crate sp-core-storage -> sp-storage * rename and move: test/utils/transaction-factory -> client/transaction-factory * move transaction-factory -> node/transaction-factory * fix missing rename * Move chain-spec-builder into bin/utils * move subkey into bin/utils * Update new subkey location * Update docs to reflect new location for utils * fixing import name
20 lines
842 B
TOML
20 lines
842 B
TOML
[package]
|
|
name = "sc-transaction-factory"
|
|
version = "0.0.1"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
block-builder-api = { package = "sp-block-builder", path = "../../primitives/block-builder" }
|
|
cli = { package = "sc-cli", path = "../cli" }
|
|
client-api = { package = "sc-client-api", path = "../api" }
|
|
client = { package = "sc-client", path = "../" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
consensus_common = { package = "sp-consensus", path = "../../primitives/consensus/common" }
|
|
log = "0.4.8"
|
|
primitives = { package = "sp-core", path = "../../primitives/core" }
|
|
sp-api = { path = "../../primitives/api" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sc-service = { path = "../service" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|