Skip to main content

bitcoin_key_expression/
lib.rs

1// SPDX-License-Identifier: CC0-1.0
2
3//! Bitcoin key expression and deterministic derivation
4//!
5//! This library provides types and functionality for key expressions and deterministic key
6//! derivation.
7
8// NB: This crate is empty if `alloc` is not enabled.
9#![cfg(feature = "alloc")]
10#![no_std]
11// Experimental features we need.
12#![doc(test(attr(warn(unused))))]
13// Coding conventions.
14#![warn(deprecated_in_future)]
15#![warn(missing_docs)]
16
17extern crate alloc;
18
19#[cfg(feature = "std")]
20extern crate std;