Check your crate for (possible) no_std compatibility
Rust
217
70 commits
updated Apr 11, 2023
From embedded programming, over smart contracts in Rust, to general cross-platform portable crates, #![no_std] crates are becoming more and more widespread.
However it is currently a very cumbersome process to find out if and why (not) a crate is compatible with no_std usage, and often requires a lengthy trial and error process, and digging through the source of all your dependencies.
cargo nono tries to aid you in navigating the current minefield that is no_std usage, and it's biggest "no no"s.
cargo-nono also comes as prebuilt binaries (useful for CI):
curl -LSfs https://japaric.github.io/trust/install.sh | \
sh -s -- --git hobofan/cargo-nono
cargo install cargo-nono
# For warnings with more informative messages install like this
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-nono
Run in the crate directory you want to check:
cargo nono check
The cargo nono check subcommand also understands the --no-default-features and --features <FEATURES> flags to help in conditional no_std setups.
no_std compatibility in dependencies by looking for a #![no_std] attribute or the often used conditional #![cfg_attr(not(feature = "std"), no_std)]std feature flagsuse std:: statements in code[build-dependencies] features bleeding over: cargo#5730Licensed under either of
at your option.
Rust
93.0%
Shell
5.7%
PowerShell
1.2%
Check your crate for (possible) no_std compatibility
Rust
217
70 commits
updated Apr 11, 2023
From embedded programming, over smart contracts in Rust, to general cross-platform portable crates, #![no_std] crates are becoming more and more widespread.
However it is currently a very cumbersome process to find out if and why (not) a crate is compatible with no_std usage, and often requires a lengthy trial and error process, and digging through the source of all your dependencies.
cargo nono tries to aid you in navigating the current minefield that is no_std usage, and it's biggest "no no"s.
cargo-nono also comes as prebuilt binaries (useful for CI):
curl -LSfs https://japaric.github.io/trust/install.sh | \
sh -s -- --git hobofan/cargo-nono
cargo install cargo-nono
# For warnings with more informative messages install like this
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-nono
Run in the crate directory you want to check:
cargo nono check
The cargo nono check subcommand also understands the --no-default-features and --features <FEATURES> flags to help in conditional no_std setups.
no_std compatibility in dependencies by looking for a #![no_std] attribute or the often used conditional #![cfg_attr(not(feature = "std"), no_std)]std feature flagsuse std:: statements in code[build-dependencies] features bleeding over: cargo#5730Licensed under either of
at your option.
Rust
93.0%
Shell
5.7%
PowerShell
1.2%