1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "nightly", feature(external_doc))]
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
#![doc(html_root_url = "https://docs.rs/merlin/2.0.1")]
#[cfg(target_endian = "big")]
compile_error!(
r#"
This crate doesn't support big-endian targets, since I didn't
have one to test correctness on. If you're seeing this message,
please file an issue!
"#
);
mod constants;
mod strobe;
mod transcript;
pub use crate::transcript::Transcript;
pub use crate::transcript::TranscriptRng;
pub use crate::transcript::TranscriptRngBuilder;