mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-09 20:11:09 +00:00
Move all deps to workspace toml (#932)
* 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
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
[package]
|
||||
name = "test-runtime"
|
||||
version = "0.28.0"
|
||||
version.workspace = true
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
subxt = { path = "../../subxt" }
|
||||
subxt = { workspace = true }
|
||||
|
||||
[build-dependencies]
|
||||
substrate-runner = { path = "../substrate-runner" }
|
||||
impl-serde = "0.4.0"
|
||||
serde = "1.0.160"
|
||||
tokio = { version = "1.27", features = ["macros", "rt-multi-thread"] }
|
||||
which = "4.4.0"
|
||||
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport"] }
|
||||
substrate-runner = { workspace = true }
|
||||
impl-serde = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
which = { workspace = true }
|
||||
jsonrpsee = { workspace = true, features = ["async-client", "client-ws-transport"] }
|
||||
|
||||
Reference in New Issue
Block a user