mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 20:48:01 +00:00
b13b8ec8d0
* Inject call and event types from metadata too at some block in subxt-historic * bump subxt-historic to 0.0.4 * Fix unrelated doc things to try and fix this job * Other Rust 1.90 fixes * 'Fix' Test * Try fixing clippy WASM job * Try again to get clippy wasm working * trybuild fix * trybuild fix take 2
63 lines
1.7 KiB
TOML
63 lines
1.7 KiB
TOML
[package]
|
|
name = "subxt-historic"
|
|
version = "0.0.4"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
description = "Download non head-of-chain blocks and state from Substrate based nodes"
|
|
keywords = ["parity", "substrate", "blockchain"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["jsonrpsee", "native"]
|
|
|
|
# Enable this for native (ie non web/wasm builds).
|
|
# Exactly 1 of "web" and "native" is expected.
|
|
native = [
|
|
"subxt-rpcs/native",
|
|
]
|
|
|
|
# Enable this for web/wasm builds.
|
|
# Exactly 1 of "web" and "native" is expected.
|
|
web = [
|
|
"subxt-rpcs/web",
|
|
]
|
|
|
|
# Enable this to use the reconnecting rpc client
|
|
reconnecting-rpc-client = ["subxt-rpcs/reconnecting-rpc-client"]
|
|
|
|
# Enable this to use jsonrpsee, which enables the jsonrpsee RPC client, and
|
|
# a couple of util functions which rely on jsonrpsee.
|
|
jsonrpsee = [
|
|
"subxt-rpcs/jsonrpsee",
|
|
]
|
|
|
|
[dependencies]
|
|
subxt-rpcs = { workspace = true }
|
|
frame-decode = { workspace = true, features = ["legacy", "legacy-types"] }
|
|
frame-metadata = { workspace = true, features = ["std", "legacy"] }
|
|
scale-type-resolver = { workspace = true }
|
|
codec = { workspace = true }
|
|
primitive-types = { workspace = true }
|
|
scale-info = { workspace = true }
|
|
scale-info-legacy = { workspace = true }
|
|
scale-decode = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
sp-crypto-hashing = { workspace = true }
|
|
url = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
scale-value = { workspace = true }
|
|
scale-decode = { workspace = true, features = ["derive"] }
|
|
hex = { workspace = true } |