mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 09:08:06 +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
18 lines
612 B
TOML
18 lines
612 B
TOML
[package]
|
|
name = "generate-custom-metadata"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
scale-info = { workspace = true, features = ["std", "bit-vec"] }
|
|
frame-metadata = { workspace = true, features = ["decode", "current"] }
|
|
codec = { package = "parity-scale-codec", workspace = true, features = ["std", "derive", "bit-vec"] }
|