mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 06:47:58 +00:00
cf7e2db1b7
* add follow_stream impl * follow_stream_unpin first draft * add tests for follow_stream_unpin * more tests and fixes for follow_stream_unpin * first pass follow_stream_driver * follow_stream_driver: add tests, fix things, buffer events from last finalized * First pass finishing Backend impl * Fix test compile issues * clippy fixes * clippy fix and consistify light_client * revert lightclient tweak * revert other lightclient thing * cargo fmt * start testing unstable backend behind feature flag * more test fixes and move test-runtime metadata path just incase * fix compile error * ensure transaction progress stream actually used and fix another test * cargo fmt * CI tweak * improve some comments and address some feedback bits * update CI to use our own nightly binary * wait for finalized block perhaps
46 lines
1.5 KiB
TOML
46 lines
1.5 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"]
|
|
|
|
# Enable this to use the unstable backend in tests _instead of_
|
|
# the default one which relies on the "old" RPC methods.
|
|
unstable-backend-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 }
|
|
serde = { 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 }
|