mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-24 21:47:56 +00:00
b6b9ac65c7
* TransactionExtensions basic support for V5 VerifySignature and renames * WIP: subxt-core v5 transaction support * Subxt to support V5 extrinsics * WIP tests failing with wsm trap error * Actually encode mortality to fix tx encode issue * fmt * rename to sign_with_account_and_signature * Add explicit methods for v4 and v5 ext construction * clippy * fix wasm example and no mut self where not needed * fix doc example * another doc fix * Add tests for tx encoding and fix v5 encode issue * add copyright and todo * refactor APIs to have clear v4/v5 split in core and slightly nicer split in subxt proper * rename Partial/SubmittableExtrinsic to *Transaction * Remove SignerT::address since it's not needed * doc fixes * fmt * doc fixes * Fix comment number * Clarify panic behaviour of inject_signature * fmt
55 lines
1.8 KiB
TOML
55 lines
1.8 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 to run the full-client tests with Light Client support.
|
|
unstable-light-client-long-running = ["subxt/unstable-light-client"]
|
|
|
|
# Enable this to use the chainhead backend in tests _instead of_
|
|
# the default one which relies on the "old" RPC methods.
|
|
chainhead-backend = []
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
codec = { package = "parity-scale-codec", workspace = true, features = ["derive", "bit-vec"] }
|
|
frame-decode = { workspace = true }
|
|
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, features = ["std"] }
|
|
syn = { workspace = true }
|
|
subxt = { workspace = true, features = ["unstable-metadata", "native", "jsonrpsee", "reconnecting-rpc-client"] }
|
|
subxt-signer = { workspace = true, features = ["default"] }
|
|
subxt-codegen = { workspace = true }
|
|
subxt-metadata = { workspace = true }
|
|
subxt-rpcs = { workspace = true }
|
|
test-runtime = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
wabt = { workspace = true }
|
|
substrate-runner = { workspace = true }
|
|
subxt-test-macro = { path = "subxt-test-macro" }
|
|
|
|
[build-dependencies]
|
|
cfg_aliases = "0.2.1"
|