Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- verify `cargo fmt` availability and install `rustfmt` via rustup if missing
- note that the `pyo3` feature requires Python development libraries
- documented safety requirements for `erase_lifetime`
- warn about missing documentation by enabling the `missing_docs` lint
- derive `Clone` and `Debug` for `WeakBytes` and `WeakView`
- replaced `quickcheck` property tests with `proptest`

Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/

#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

/// Core byte container types and traits.
pub mod bytes;
Expand Down