double_ratchet_signal/lib.rs
1//! Crate documentation provided in README.md
2
3// TODO: include README.md documentation: https://github.com/rust-lang/rust/issues/44732
4// FIXED(myl7): Currently no need for an extra `doc` folder
5// TODO: test examples in README.md
6// FIXED(myl7): A test is available in the `signal.rs`
7
8#![no_std]
9// Because it would report errors like too similar variable names, which is hard to fix without largely update the code
10// #![warn(clippy::pedantic)]
11// #![warn(missing_docs)]
12
13extern crate alloc;
14extern crate double_ratchet_signal_cbc_aes256_pkcs7_compact as cbc_aes256_pkcs7_compact;
15#[cfg(feature = "std")]
16extern crate std;
17
18pub mod signal;