hydro_std/
lib.rs

1stageleft::stageleft_no_entry_crate!();
2
3pub mod bench_client;
4pub mod compartmentalize;
5pub mod membership;
6pub mod quorum;
7pub mod request_response;
8
9#[cfg(test)]
10mod test_init {
11    #[ctor::ctor]
12    fn init() {
13        hydro_lang::deploy::init_test();
14    }
15}