Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 635 Bytes

File metadata and controls

26 lines (19 loc) · 635 Bytes

CLAUDE.md

Build Commands

cargo build --all-features
cargo clippy --all-features
cargo test --all-features
cargo fmt --all

no_std Build (Embedded)

# no_std + alloc
cargo build --no-default-features --features alloc

# ARM Cortex-M4F bare-metal target
rustup target add thumbv7em-none-eabihf
cargo build --no-default-features --features alloc --target thumbv7em-none-eabihf

Bencodex Specification