mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
20 lines
569 B
Rust
20 lines
569 B
Rust
#![deny(warnings)]
|
|
#![warn(unused_extern_crates)]
|
|
#![deny(clippy::todo)]
|
|
#![deny(clippy::unimplemented)]
|
|
// In this file, we do want to panic on these faults.
|
|
// #![deny(clippy::unwrap_used)]
|
|
// #![deny(clippy::expect_used)]
|
|
#![deny(clippy::panic)]
|
|
#![deny(clippy::unreachable)]
|
|
#![deny(clippy::await_holding_lock)]
|
|
#![deny(clippy::needless_pass_by_value)]
|
|
#![deny(clippy::trivially_copy_pass_by_ref)]
|
|
|
|
#[cfg(target_family = "unix")]
|
|
mod pam;
|
|
|
|
// pub use needs to be here so it'll compile and export all the things
|
|
#[cfg(target_family = "unix")]
|
|
pub use crate::pam::*;
|