From 3e9267071fba5887f35b64b2a76c0e3e708366da Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 14 Nov 2024 08:57:22 +1100 Subject: [PATCH] primitives: Update crate level docs re allocator We slightly improved the situation but much of the functionality is still behind the `alloc` feature. --- primitives/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index e8617dea6..b04d624da 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -4,7 +4,8 @@ //! //! Primitive data types that are used throughout the [`rust-bitcoin`] ecosystem. //! -//! This crate can be used in a no-std environment but requires an allocator. +//! This crate can be used in a no-std environment but a lot of the functionality requires an +//! allocator i.e., requires the `alloc` feature to be enabled. //! //! [`rust-bitcoin`]: