From d91cdd20bfc0eebce5a067d37d05381bac2845aa Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 2 Apr 2024 08:10:38 +1100 Subject: [PATCH] docs: Document ordered feature Add "ordered" to the list of features in the `bitcoin` crate level docs. --- bitcoin/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index 7ae3eb76..c10c84b3 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -27,6 +27,7 @@ //! `std::error::Error`. At this time there's a hack to //! achieve the same without this feature but it could //! happen the implementations diverge one day. +//! * `ordered` - (dependency), adds implementations of `ArbitraryOrdOrd` to some structs. #![cfg_attr(all(not(feature = "std"), not(test)), no_std)]