From 2bd9358627e99bc5489292e09443c017616210be Mon Sep 17 00:00:00 2001 From: "Augusto F. Hack" Date: Tue, 8 Aug 2023 13:52:41 +0200 Subject: [PATCH] doc: alloc is no longer unstable --- _src/no-std.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_src/no-std.md b/_src/no-std.md index 357daba..03cb758 100644 --- a/_src/no-std.md +++ b/_src/no-std.md @@ -45,9 +45,9 @@ library data structures that involve heap memory allocation, including `String` and `Vec`. It also removes some features of `derive(Deserialize)` including untagged enums. -You can opt back in to these impls in an unstable way by enabling the `"alloc"` -Cargo feature. This configuration provides integration for heap-allocated -collections without depending on the rest of the Rust standard library. +You can opt back in to these impls by enabling the `"alloc"` Cargo feature. +This configuration provides integration for heap-allocated collections without +depending on the rest of the Rust standard library. ```toml [dependencies]