commonware_glue/lib.rs
1#![doc = include_str!("../README.md")]
2#![doc(
3 html_logo_url = "https://commonware.xyz/imgs/rustdoc_logo.svg",
4 html_favicon_url = "https://commonware.xyz/favicon.ico"
5)]
6
7commonware_macros::stability_scope!(ALPHA {
8 pub mod dkg;
9 pub mod stateful;
10
11 #[cfg(any(test, feature = "test-utils"))]
12 pub mod simulate;
13});