feat: no_std environments

This commit is contained in:
2026-05-31 00:30:03 +02:00
parent 08d50f8dcc
commit 184b9618b3
5 changed files with 33 additions and 11 deletions
+4
View File
@@ -20,8 +20,11 @@ errprint() {
set -x
cargo check -q
cargo check -q --no-default-features
cargo clippy -q
cargo clippy -q --no-default-features
cargo test -q
cargo test -q --no-default-features
cargo doc -q
cargo fmt --check
codespell
@@ -33,4 +36,5 @@ if [ "${1:-}" == "extra" ]; then (
set -x
cargo +nightly miri test -q
cargo +nightly miri test -q --no-default-features
) fi