mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 02:08:00 +00:00
b8ee6a084f
- Renamed all crate names from subxt-* to pezkuwi-subxt-* - Updated codegen to use pezsp_runtime, pezsp_core, pezframe_support instead of sp_runtime, sp_core, frame_support - Replaced all internal references from subxt_* to pezkuwi_subxt_* - Added local path dependencies to Pezkuwi SDK crates - Updated workspace configuration for edition 2024
64 lines
1.8 KiB
TOML
64 lines
1.8 KiB
TOML
[package]
|
|
name = "subxt-historic"
|
|
version = "0.0.8"
|
|
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]
|
|
pezkuwi-subxt-rpcs = { workspace = true }
|
|
frame-decode = { workspace = true, features = ["legacy", "legacy-types"] }
|
|
frame-metadata = { workspace = true, features = ["std", "legacy"] }
|
|
scale-type-resolver = { workspace = true, features = ["scale-info"] }
|
|
codec = { workspace = true }
|
|
primitive-types = { workspace = true }
|
|
scale-info = { workspace = true }
|
|
scale-info-legacy = { workspace = true }
|
|
scale-decode = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
pezsp-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 }
|