mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +00:00
43 lines
2.8 KiB
TOML
43 lines
2.8 KiB
TOML
[package]
|
|
name = "substrate-subxt"
|
|
version = "0.1.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]
|
|
derive_more = "0.14.0"
|
|
log = "0.4"
|
|
futures = "0.1.28"
|
|
jsonrpc-core-client = { version = "14.0", features = ["ws"] }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
parity-scale-codec = { version = "1.0", default-features = false, features = ["derive", "full"] }
|
|
runtime_metadata = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "srml-metadata" }
|
|
runtime_support = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "srml-support" }
|
|
runtime_primitives = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "sr-primitives" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sr-version = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "sr-version" }
|
|
srml-system = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "srml-system" }
|
|
srml-balances = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "srml-balances" }
|
|
srml-contracts = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "srml-contracts" }
|
|
srml-indices = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "srml-indices" }
|
|
substrate-rpc-api = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "substrate-rpc-api" }
|
|
substrate-rpc-primitives = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "substrate-rpc-primitives" }
|
|
substrate-primitives = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "substrate-primitives" }
|
|
txpool = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "substrate-transaction-graph" }
|
|
url = "1.7"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
node-runtime = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "node-runtime" }
|
|
substrate-keyring = { git = "https://github.com/paritytech/substrate/", rev = "7874be8668ba6ff43c107c5da26105f934654cc2", package = "substrate-keyring" }
|
|
tokio = "0.1"
|
|
wabt = "0.9.0"
|