mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 14:07:58 +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
25 lines
674 B
TOML
25 lines
674 B
TOML
[package]
|
|
name = "subxt-examples"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = false
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
description = "Subxt example usage"
|
|
|
|
[dev-dependencies]
|
|
subxt = { workspace = true }
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
codec = { package = "parity-scale-codec", workspace = true, features = ["derive", "bit-vec"] }
|
|
hex = { workspace = true }
|
|
sp-keyring = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|