mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 16:08:00 +00:00
4ed8e37ffe
* Revert contracts put_code test to pure code (not using the macro) * Test contract instantiate * Fmt
59 lines
2.3 KiB
TOML
59 lines
2.3 KiB
TOML
[workspace]
|
|
members = [".", "client", "proc-macro", "test-node"]
|
|
|
|
[package]
|
|
name = "substrate-subxt"
|
|
version = "0.12.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]
|
|
client = ["substrate-subxt-client"]
|
|
|
|
# enable this feature to run tests which require a local dev chain node
|
|
integration-tests = []
|
|
|
|
[dependencies]
|
|
log = "0.4.11"
|
|
thiserror = "1.0.20"
|
|
futures = "0.3.5"
|
|
jsonrpsee = { version = "0.1.0", features = ["ws"] }
|
|
num-traits = { version = "0.2.12", default-features = false }
|
|
serde = { version = "1.0.115", features = ["derive"] }
|
|
serde_json = "1.0.57"
|
|
url = "2.1.1"
|
|
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive", "full"] }
|
|
|
|
frame-metadata = { version = "11.0.0-rc6", package = "frame-metadata" }
|
|
frame-support = { version = "2.0.0-rc6", package = "frame-support" }
|
|
sp-runtime = { version = "2.0.0-rc6", package = "sp-runtime" }
|
|
sp-version = { version = "2.0.0-rc6", package = "sp-version" }
|
|
pallet-indices = { version = "2.0.0-rc6", package = "pallet-indices" }
|
|
hex = "0.4.2"
|
|
sp-rpc = { version = "2.0.0-rc6", package = "sp-rpc" }
|
|
sp-core = { version = "2.0.0-rc6", package = "sp-core" }
|
|
sc-rpc-api = { version = "0.8.0-rc6", package = "sc-rpc-api" }
|
|
sp-transaction-pool = { version = "2.0.0-rc6", package = "sp-transaction-pool" }
|
|
substrate-subxt-client = { version = "0.4.0", path = "client", optional = true }
|
|
substrate-subxt-proc-macro = { version = "0.12.0", path = "proc-macro" }
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.6.3", features = ["attributes"] }
|
|
env_logger = "0.7.1"
|
|
frame-system = { version = "2.0.0-rc6", package = "frame-system" }
|
|
pallet-balances = { version = "2.0.0-rc6", package = "pallet-balances" }
|
|
sp-keyring = { version = "2.0.0-rc6", package = "sp-keyring" }
|
|
substrate-subxt-client = { version = "0.4.0", path = "client" }
|
|
tempdir = "0.3.7"
|
|
test-node = { path = "test-node" }
|
|
wabt = "0.10.0"
|