mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 10:37:56 +00:00
2176ec9fa7
* Bump to latest scale-encode,decode,value and fix test running * remove patch deps * update CI to spit out 'substrate-node' binary now * fmt * Fix test: compact type ID no longer present so can't re-encode Value in same way * remove patch * Fix cargo.lock * Fix other compact test
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "integration-tests"
|
|
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 integration tests that rely on the Substrate binary"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Enable to run the tests with Light Client support.
|
|
unstable-light-client = ["subxt/unstable-light-client"]
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
codec = { package = "parity-scale-codec", workspace = true, features = ["derive", "bit-vec"] }
|
|
frame-metadata = { workspace = true }
|
|
futures = { workspace = true }
|
|
hex = { workspace = true }
|
|
regex = { workspace = true }
|
|
scale-info = { workspace = true, features = ["bit-vec"] }
|
|
sp-core = { workspace = true }
|
|
syn = { workspace = true }
|
|
subxt = { workspace = true, features = ["unstable-metadata", "native", "jsonrpsee", "substrate-compat"] }
|
|
subxt-signer = { workspace = true, features = ["subxt"] }
|
|
subxt-codegen = { workspace = true }
|
|
subxt-metadata = { workspace = true }
|
|
test-runtime = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
wabt = { workspace = true }
|
|
substrate-runner = { workspace = true }
|
|
sp-runtime = { workspace = true }
|