Merge rust-bitcoin/rust-bitcoin#1904: This library is not solely dependent on Rust
654f58da17
This library is not solely dependent on Rust (roy9495) Pull request description: Fix: #1867 Docs claim this library is pure rust but it depends on libsecp256k1 (and optionally libbitcoinconsensus) So, I changed the lib.rs file accordingly. ACKs for top commit: Kixunil: ACK654f58da17
apoelstra: ACK654f58da17
Tree-SHA512: 139a921ead8e96472adb8019a0b43bcde728578699092c69322459d865be0de69ca48d073cc4c16739257627f2b6dea4e77332f2d32894812ae5b91935257782
This commit is contained in:
commit
089b4e255f
|
@ -6,9 +6,9 @@
|
||||||
//! primitives. It is designed for Rust programs built to work with the Bitcoin
|
//! primitives. It is designed for Rust programs built to work with the Bitcoin
|
||||||
//! network.
|
//! network.
|
||||||
//!
|
//!
|
||||||
//! It is also written entirely in Rust to illustrate the benefits of strong type
|
//! Except for its dependency on libsecp256k1 (and optionally libbitcoinconsensus),
|
||||||
//! safety, including ownership and lifetime, for financial and/or cryptographic
|
//! this library is written entirely in Rust. It illustrates the benefits of
|
||||||
//! software.
|
//! strong type safety, including ownership and lifetime, for financial and/or cryptographic software.
|
||||||
//!
|
//!
|
||||||
//! See README.md for detailed documentation about development and supported
|
//! See README.md for detailed documentation about development and supported
|
||||||
//! environments.
|
//! environments.
|
||||||
|
|
Loading…
Reference in New Issue