starfall/
lib.rs

1#![allow(unused_macros)]
2
3#[allow(unused_imports)]
4#[macro_use]
5extern crate assert_approx_eq;
6#[macro_use]
7extern crate thiserror;
8
9#[macro_use]
10extern crate honeyholt;
11pub use honeyholt::*;
12
13#[macro_use]
14extern crate volmark;
15pub use volmark::*;
16
17pub mod astronomy;
18
19#[cfg(test)]
20pub mod test {
21
22  use std::env::set_var;
23
24  pub use super::*;
25
26  #[named]
27  pub fn init() {
28    let _ = pretty_env_logger_builder().is_test(true).try_init();
29    set_var("RUST_BACKTRACE", "1");
30  }
31}