From 654f58da1700cc2a82229470d1e94ee495f305e8 Mon Sep 17 00:00:00 2001 From: roy9495 Date: Thu, 8 Jun 2023 12:21:41 +0000 Subject: [PATCH] This library is not solely dependent on Rust --- bitcoin/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index b12b11bb..eda2fdbb 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -6,9 +6,9 @@ //! primitives. It is designed for Rust programs built to work with the Bitcoin //! network. //! -//! It is also written entirely in Rust to illustrate the benefits of strong type -//! safety, including ownership and lifetime, for financial and/or cryptographic -//! software. +//! Except for its dependency on libsecp256k1 (and optionally libbitcoinconsensus), +//! this library is written entirely in Rust. It illustrates the benefits of +//! strong type safety, including ownership and lifetime, for financial and/or cryptographic software. //! //! See README.md for detailed documentation about development and supported //! environments.