mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 22:17:58 +00:00
6175cb70b9
* Upgrade dependencies, bumps substrate to 2.0.1 * Upgrade test-node dependencies * Upgrade client dependencies * Upgrade proc-macro dependencies * Revert futures01 dependency * Upgrade futures * Remove redundant package specifiers
63 lines
1.9 KiB
TOML
63 lines
1.9 KiB
TOML
[workspace]
|
|
members = [".", "client", "proc-macro", "test-node"]
|
|
|
|
[package]
|
|
name = "substrate-subxt"
|
|
version = "0.13.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 = []
|
|
client = ["substrate-subxt-client"]
|
|
|
|
# enable this feature to run tests which require a local dev chain node
|
|
integration-tests = []
|
|
|
|
[dependencies]
|
|
log = "0.4.13"
|
|
thiserror = "1.0.23"
|
|
futures = "0.3.10"
|
|
jsonrpsee = { version = "0.1.0", features = ["ws"] }
|
|
num-traits = { version = "0.2.14", default-features = false }
|
|
serde = { version = "1.0.119", features = ["derive"] }
|
|
serde_json = "1.0.61"
|
|
url = "2.2.0"
|
|
codec = { package = "parity-scale-codec", version = "1.3.6", default-features = false, features = ["derive", "full"] }
|
|
|
|
frame-metadata = "12.0.1"
|
|
frame-support = "2.0.1"
|
|
sp-runtime = "2.0.1"
|
|
sp-version = "2.0.1"
|
|
pallet-indices = "2.0.1"
|
|
hex = "0.4.2"
|
|
sp-std = "2.0.1"
|
|
application-crypto = { version = "2.0.1", package = "sp-application-crypto" }
|
|
pallet-staking = "2.0.1"
|
|
|
|
sp-rpc = { version = "2.0.1", package = "sp-rpc" }
|
|
sp-core = { version = "2.0.1", package = "sp-core" }
|
|
substrate-subxt-client = { version = "0.5.0", path = "client", optional = true }
|
|
substrate-subxt-proc-macro = { version = "0.13.0", path = "proc-macro" }
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.8.0", features = ["attributes"] }
|
|
env_logger = "0.8.2"
|
|
frame-system = "2.0.1"
|
|
pallet-balances = "2.0.1"
|
|
sp-keyring = "2.0.1"
|
|
substrate-subxt-client = { version = "0.5.0", path = "client" }
|
|
tempdir = "0.3.7"
|
|
test-node = { path = "test-node" }
|
|
wabt = "0.10.0"
|
|
assert_matches = "1.4.0"
|