Skip to content

Commit

Permalink
Document the use_alloc feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe-Cholet authored and jswrenn committed Feb 28, 2024
1 parent 6b931e5 commit 1131899
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@
//! - `use_std`
//! - Enabled by default.
//! - Disable to compile itertools using `#![no_std]`. This disables
//! any items that depend on collections (like `chunk_by`, `unique`,
//! any item that depend on allocations (see the `use_alloc` feature)
//! and hash maps (like `unique`, `counts`, `into_grouping_map` and more).
//! - `use_alloc`
//! - Enabled by default.
//! - Enables any item that depend on allocations (like `chunk_by`,
//! `kmerge`, `join` and many more).
//!
//! ## Rust Version
Expand Down

0 comments on commit 1131899

Please sign in to comment.