bitfield • 0.13.2This crate provides macros to generate bitfield-like struct.
INDIRECT
0
cfg-if • 1.0.0A macro to ergonomically define an item depending on a large number of #[cfg]
parameters. Structured like an if-else chain, the first matching branch is the
item that gets emitted.
heapless • 0.7.17`static` friendly data structures that don't require dynamic memory allocation
DIRECT
11
libc • 0.2.169Raw FFI bindings to platform libraries like libc.
INDIRECT
0
linked_list_allocator • 0.10.5Simple allocator usable for no_std systems. It builds a linked list from the freed blocks and thus needs no additional data structures.
INDIRECT
0
lock_api • 0.4.12Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.
proc-macro2 • 1.0.92A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.
r0 • 0.2.2Initialization code ('crt0') written in Rust
INDIRECT
0
rand_core • 0.6.4Core random number generator traits and tools for implementation.
INDIRECT
0
rand • 0.8.5Random number generators and other randomness functionality.
INDIRECT
1
rustc_version • 0.2.3A library for querying the version of a installed rustc compiler
INDIRECT
2
rustc_version • 0.4.1A library for querying the version of a installed rustc compiler
INDIRECT
1
scopeguard • 1.2.0A RAII scope guard that will run a given closure when it goes out of scope,
even if the code between panics (assuming unwinding panic).
Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as
shorthands for guards with one of the implemented strategies.
stable_deref_trait • 1.2.0An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.