fedimint-core 0.9.1

fedimint-core provides common code used by both client and server.
Documentation
1
2
3
4
5
6
7
#[macro_export]
macro_rules! crit {
    ($($t:tt)*) => {
        // nosemgrep: ban-error-logging-level
        ::tracing::error!($($t)*)
    };
}