mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 15:27:57 +00:00
42 lines
2.0 KiB
TOML
42 lines
2.0 KiB
TOML
[package]
|
|
name = "substrate-subxt"
|
|
version = "0.3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
license = "GPL-3.0"
|
|
readme = "README.md"
|
|
description = "Submit extrinsics (transactions) to a substrate node via RPC"
|
|
keywords = ["parity", "substrate", "blockchain"]
|
|
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
thiserror = "1.0"
|
|
futures = "0.1"
|
|
jsonrpc-core-client = { version = "14.0", features = ["ws"] }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
url = "1.7"
|
|
parity-scale-codec = { version = "1.1", default-features = false, features = ["derive", "full"] }
|
|
|
|
frame-metadata = { git = "https://github.com/paritytech/substrate/", package = "frame-metadata" }
|
|
frame-support = { git = "https://github.com/paritytech/substrate/", package = "frame-support" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate/", package = "sp-runtime" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate/", package = "sp-version" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate/", package = "frame-system" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate/", package = "pallet-balances" }
|
|
pallet-contracts = { git = "https://github.com/paritytech/substrate/", package = "pallet-contracts" }
|
|
pallet-indices = { git = "https://github.com/paritytech/substrate/", package = "pallet-indices" }
|
|
substrate-rpc-api = { git = "https://github.com/paritytech/substrate/", package = "sc-rpc-api" }
|
|
sp-rpc = { git = "https://github.com/paritytech/substrate/", package = "sp-rpc" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate/", package = "sp-core" }
|
|
txpool-api = { git = "https://github.com/paritytech/substrate/", package = "sp-transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.7"
|
|
tokio = "0.1"
|
|
wabt = "0.9"
|
|
node-runtime = { git = "https://github.com/paritytech/substrate/", package = "node-runtime" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate/", package = "sp-keyring" }
|