mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
* Cleanup how we check for last git commit to avoid an insecure dep * Resolve unmaintained or old deps * Fix ci
19 lines
428 B
Rust
19 lines
428 B
Rust
#![deny(warnings)]
|
|
#![warn(unused_extern_crates)]
|
|
#![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)]
|
|
|
|
pub mod constants;
|
|
pub mod internal;
|
|
pub mod messages;
|
|
pub mod oauth2;
|
|
pub mod scim_v1;
|
|
pub mod v1;
|
|
|
|
pub use webauthn_rs_proto as webauthn;
|