mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 20:38:04 +00:00
06bc4ab977
I had failed to include the ‘Parachains’ component, which the default Substrate runtime doesn’t have.
59 lines
2.7 KiB
TOML
59 lines
2.7 KiB
TOML
[workspace]
|
|
members = [".", "proc-macro"]
|
|
|
|
[package]
|
|
name = "substrate-subxt"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
license = "GPL-3.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/paritytech/substrate-subxt"
|
|
documentation = "https://docs.rs/substrate-subxt"
|
|
homepage = "https://www.parity.io/"
|
|
description = "Submit extrinsics (transactions) to a substrate node via RPC"
|
|
keywords = ["parity", "substrate", "blockchain"]
|
|
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
|
|
|
|
[features]
|
|
default = ["kusama"]
|
|
kusama = ["polkadot"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
thiserror = "1.0"
|
|
futures = "0.3.5"
|
|
jsonrpsee = { version = "0.1", features = ["ws"] }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
url = "2.1"
|
|
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
|
|
|
|
frame-metadata = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
hex = "0.4.0"
|
|
sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-subxt-proc-macro = { version = "0.8.0", path = "proc-macro" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot = { git = "https://github.com/paritytech/polkadot", branch = "master", optional = true, default-features = false, features = ["std"], package = "polkadot-primitives" }
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.5.0", features = ["attributes"] }
|
|
env_logger = "0.7"
|
|
wabt = "0.9"
|
|
frame-system = { version = "2.0.0-rc2", package = "frame-system" }
|
|
pallet-balances = { version = "2.0.0-rc2", package = "pallet-balances" }
|
|
sp-keyring = { version = "2.0.0-rc2", package = "sp-keyring" }
|