cargo build --all-features
cargo clippy --all-features
cargo test --all-features
cargo fmt --all
# 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 Spec (
spec/README.md) - JSON Representation (
spec/JSON.md)