mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 21:07:56 +00:00
5447035716
* no-std tests and porting of subxt-metadata * update pipeline * fix generate custom metadata test * fix cargo run command * adjust pipeline * remove prelude from subxt-metadata * revert autoformatting of Cargo.toml * remove alloc::format! again, still causes linker errors * add no-std-build for thumbv7em-none-eabi target * remove std feature flag * remove libc and add small readme with test instructions * change ci for nightly no std
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "subxt-metadata"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
autotests = false
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
description = "Command line utilities for checking metadata compatibility between nodes."
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["scale-info/std", "frame-metadata/std"]
|
|
|
|
[dependencies]
|
|
scale-info = { workspace = true, default-features = false }
|
|
frame-metadata = { workspace = true, default-features = false, features = ["current", "decode"] }
|
|
codec = { package = "parity-scale-codec", workspace = true, default-features = false, features = ["derive"] }
|
|
sp-core-hashing = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
derive_more = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
bitvec = { workspace = true, features = ["alloc"] }
|
|
criterion = { workspace = true }
|
|
scale-info = { workspace = true, features = ["bit-vec"] }
|
|
assert_matches = { workspace = true }
|
|
|
|
[lib]
|
|
# Without this, libtest cli opts interfere with criteron benches:
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|