Skip to content

Commit

Permalink
Add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wcampbell0x2a committed Sep 4, 2024
1 parent f7d8bce commit 2d52758
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,11 @@ environment, you will see logging messages as Deku does its deserialising.
- `DekuError` whenever possible will use a `'static str`, to make the errors compile away when following a
guide such as [min-sized-rust](/~https://github.com/johnthagen/min-sized-rust).
# Performance: Compile without `bitvec`
The feature `bits` enables the `bitvec` crate to use when reading and writing, which is enabled by default.
This however slows down the reading and writing process if your code doesn't use `bits` and the `bit_offset`
in `from_bytes`.
*/
#![warn(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
Expand Down

0 comments on commit 2d52758

Please sign in to comment.