taproot-eyra 0.22.4

Rust programs written entirely in Rust (eyra routed to the taproot libc fork)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Rust programs written entirely in Rust: upstream eyra, with the libc
//! stack routed to the taproot c-scape/c-gull forks.
#![allow(unused_extern_crates)]
#![cfg_attr(not(feature = "std"), no_std)]

// If enabled, re-export `std` so that we can be used as `std` to avoid the
// `extern crate eyra;`.
#[cfg(feature = "be-std")]
pub use std::*;

/// All the functionality of Eyra is factored out into separate libraries. This
/// `extern crate` line is needed to ensure that libraries that intercept C
/// library symbols get linked in.
extern crate c_gull;