asimov_module/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3#![no_std]
4#![forbid(unsafe_code)]
5
6pub use dogma::prelude;
7pub use secrecy;
8
9#[cfg(feature = "std")]
10pub use getenv;
11
12#[cfg(feature = "tracing")]
13pub use tracing;