2022-12-13 16:44:45 +00:00
//! A simple, almost pure-rust, cross-platform `WireGuard` implementation.
2022-12-14 02:53:22 +00:00
//! Designed to function similarly to boringtun, this crate has modules for cross-platform device drivers, the Noise_IKpsk2 handshake, and cryptography constructs required for the above.
2022-12-13 16:44:45 +00:00
#![ warn(clippy::pedantic) ]
#![ warn(clippy::nursery) ]
#![ deny(missing_docs) ]
2022-12-15 22:59:56 +00:00
#![ deny(clippy::unwrap_used) ]
#![ deny(clippy::expect_used) ]
2022-12-13 16:44:45 +00:00
// This is an annoyance
#![ allow(clippy::must_use_candidate) ]
2022-12-14 02:53:22 +00:00
pub mod drivers ;
2022-12-13 01:24:48 +00:00
pub mod qcrypto ;
2022-12-14 02:53:22 +00:00
pub mod noise ;
2022-12-13 16:44:45 +00:00
pub use cidr ;