mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 18:28:01 +00:00
4bc27d4977
* feat: add native subxt rpc reconn client * add jsonrpsee dep to reconnecting-client * Update subxt/src/backend/rpc/reconnecting_rpc_client/tests.rs * fix grumbles * add simple wasm test for reconnecting client * fix test build * cargo fmt * remove reconnect apis * Update testing/wasm-rpc-tests/tests/wasm.rs * Update subxt/src/backend/rpc/reconnecting_rpc_client/tests.rs * Update subxt/src/backend/rpc/reconnecting_rpc_client/tests.rs
19 lines
555 B
TOML
19 lines
555 B
TOML
[package]
|
|
name = "wasm-rpc-tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3.24"
|
|
tracing-wasm = "0.2.1"
|
|
tracing = "0.1.34"
|
|
console_error_panic_hook = "0.1.7"
|
|
serde_json = "1"
|
|
futures-util = "0.3.30"
|
|
|
|
# This crate is not a part of the workspace, because it
|
|
# requires the "jsonrpsee web" features to be enabled, which we don't
|
|
# want enabled for workspace builds in general.
|
|
subxt = { path = "../../subxt", default-features = false, features = ["web", "jsonrpsee", "unstable-reconnecting-rpc-client"] }
|