mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 21:58:00 +00:00
464b4432cf
* Move all deps to workspace toml * cargo fmt and codec 3.4, removing now unneeded 'full' feature * add wasm-tests to workspace and fix subxt inheritng * cargo fmt * wasm-test thing can't be in workspace so revert that * remove unwanted target dir from wasm-tests
16 lines
471 B
TOML
16 lines
471 B
TOML
[package]
|
|
name = "wasm-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dev-dependencies]
|
|
# This crate is not a part of the workspace, sadly, because it
|
|
# requires a mutually exclusive jsonrpsee feature to be enabled on
|
|
# subxt to work. So, we can't inherit versions.
|
|
wasm-bindgen-test = "0.3.24"
|
|
tracing-wasm = "0.2.1"
|
|
console_error_panic_hook = "0.1.7"
|
|
serde_json = "1"
|
|
subxt = { path = "../../subxt", default-features = false, features = ["jsonrpsee-web"] }
|