mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 13:48:04 +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
22 lines
527 B
TOML
22 lines
527 B
TOML
[package]
|
|
name = "subxt-core-no-std-tests"
|
|
edition = "2021"
|
|
publish = false
|
|
version = "0.0.0"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
subxt-metadata = { path = "../../metadata", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = ["derive"] }
|
|
libc_alloc = { version = "1.0.6" }
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
# this shouldn't be needed, it's in workspace.exclude, but still
|
|
# I get the complaint unless I add it...
|
|
[workspace]
|