25 lines
646 B
Rust
25 lines
646 B
Rust
|
// Written by the Rust Bitcoin developers.
|
||
|
// SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
//! # Rust Bitcoin Internal
|
||
|
//!
|
||
|
//! This crate is only meant to be used internally by crates in the
|
||
|
//! [rust-bitcoin](https://github.com/rust-bitcoin) ecosystem.
|
||
|
//!
|
||
|
|
||
|
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
|
||
|
// Experimental features we need.
|
||
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||
|
// Coding conventions
|
||
|
#![forbid(unsafe_code)]
|
||
|
#![deny(non_upper_case_globals)]
|
||
|
#![deny(non_camel_case_types)]
|
||
|
#![deny(non_snake_case)]
|
||
|
#![deny(unused_mut)]
|
||
|
#![deny(dead_code)]
|
||
|
#![deny(unused_imports)]
|
||
|
#![deny(missing_docs)]
|
||
|
#![deny(unused_must_use)]
|
||
|
|
||
|
pub mod error;
|