mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 18:47:56 +00:00
48 lines
2.1 KiB
TOML
48 lines
2.1 KiB
TOML
[package]
|
|
name = "subxt-client"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"David Craven <david@craven.ch>",
|
|
"Parity Technologies <admin@parity.io>",
|
|
]
|
|
edition = "2018"
|
|
|
|
license = "GPL-3.0"
|
|
repository = "https://github.com/paritytech/substrate-subxt"
|
|
documentation = "https://docs.rs/substrate-subxt-client"
|
|
homepage = "https://www.parity.io/"
|
|
description = "Embed a substrate node into your subxt application."
|
|
keywords = ["parity", "substrate", "blockchain"]
|
|
|
|
[dependencies]
|
|
async-std = { version = "1.8.0", features = ["tokio1"] }
|
|
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] }
|
|
futures = "0.3.9"
|
|
jsonrpsee = { version = "0.8.0", features = ["async-client"] }
|
|
log = "0.4.13"
|
|
serde_json = "1"
|
|
subxt = { path = "../subxt" }
|
|
thiserror = "1.0.23"
|
|
|
|
sc-client-db = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0" }
|
|
|
|
tokio = { version = "1.16", features = ["rt-multi-thread"] }
|
|
|
|
[target.'cfg(target_arch="x86_64")'.dependencies]
|
|
sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0", features = ["wasmtime"] }
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.8.0", features = ["attributes"] }
|
|
env_logger = "0.9"
|
|
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
|
|
node-cli = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0", default-features = false }
|
|
tempdir = "0.3.7"
|
|
|
|
[patch.crates-io]
|
|
sp-core = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate.git", tag = "publish-sp-version-v4.0.0" }
|