bitcoin_secp256k1/lib.rs
1#![feature(test)]
2extern crate test;
3
4macro_rules! mx {
5 ($x:ident) => { #[macro_use] mod $x; pub use $x::*; }
6}
7
8#[macro_use] extern crate static_assertions;
9
10#[macro_use] mod imports; use imports::*;
11
12//----------------------------------------
13
14x!{assumptions}
15x!{gen_context}
16x!{preallocated}
17x!{secp256k1}
18x!{selftest}
19x!{testrand}
20x!{tests}
21x!{tests_exhaustive}
22x!{valgrind_ctime_test}