mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 03:07:56 +00:00
75 lines
2.7 KiB
TOML
75 lines
2.7 KiB
TOML
[workspace]
|
|
members = [".", "client", "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]
|
|
kusama = []
|
|
default = ["kusama"]
|
|
client = ["substrate-subxt-client"]
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
thiserror = "1.0.19"
|
|
futures = "0.3.5"
|
|
jsonrpsee = { version = "0.1.0", features = ["ws"] }
|
|
num-traits = { version = "0.2.11", default-features = false }
|
|
serde = { version = "1.0.111", features = ["derive"] }
|
|
serde_json = "1.0.53"
|
|
url = "2.1.1"
|
|
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
|
|
|
|
frame-metadata = { version = "11.0.0-rc3", package = "frame-metadata" }
|
|
frame-support = { version = "2.0.0-rc3", package = "frame-support" }
|
|
sp-runtime = { version = "2.0.0-rc3", package = "sp-runtime" }
|
|
sp-version = { version = "2.0.0-rc3", package = "sp-version" }
|
|
pallet-indices = { version = "2.0.0-rc3", package = "pallet-indices" }
|
|
hex = "0.4.2"
|
|
sp-rpc = { version = "2.0.0-rc3", package = "sp-rpc" }
|
|
sp-core = { version = "2.0.0-rc3", package = "sp-core" }
|
|
sc-rpc-api = { version = "0.8.0-rc3", package = "sc-rpc-api" }
|
|
sp-transaction-pool = { version = "2.0.0-rc3", package = "sp-transaction-pool" }
|
|
substrate-subxt-client = { path = "client", optional = true }
|
|
substrate-subxt-proc-macro = { version = "0.8.0", path = "proc-macro" }
|
|
sp-std = "2.0.0-rc3"
|
|
application-crypto = { version = "2.0.0-rc3", package = "sp-application-crypto" }
|
|
pallet-indices = "2.0.0-rc3"
|
|
sp-runtime = "2.0.0-rc3"
|
|
sp-version = "2.0.0-rc3"
|
|
sc-rpc-api = "0.8.0-rc3"
|
|
sp-finality-grandpa = "2.0.0-rc3"
|
|
sp-consensus-babe = "0.8.0-rc3"
|
|
pallet-im-online = "2.0.0-rc3"
|
|
sp-authority-discovery = "2.0.0-rc3"
|
|
frame-metadata = "11.0.0-rc3"
|
|
frame-support = "2.0.0-rc3"
|
|
sp-transaction-pool = "2.0.0-rc3"
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "=1.5.0", features = ["attributes"] }
|
|
env_logger = "0.7.1"
|
|
wabt = "0.9.2"
|
|
frame-system = { version = "2.0.0-rc3", package = "frame-system" }
|
|
node-template = { git = "https://github.com/paritytech/substrate" }
|
|
pallet-balances = { version = "2.0.0-rc3", package = "pallet-balances" }
|
|
sp-keyring = { version = "2.0.0-rc3", package = "sp-keyring" }
|
|
substrate-subxt-client = { path = "client" }
|
|
tempdir = "0.3.7"
|
|
|
|
[patch.crates-io]
|
|
sc-network = { git = "https://github.com/paritytech/substrate" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate" }
|