codora-security 0.1.0

Authentication and Authorization library written in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]
// Silence the noise in development!
#![cfg_attr(debug_assertions, allow(dead_code, unused_variables))]
// Docs and linting rules
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
#![cfg_attr(test, allow(clippy::float_cmp))]
#![cfg_attr(not(test), deny(clippy::print_stdout, clippy::dbg_macro))]
// - Lint for missing docs
// #![cfg_attr(not(debug_assertions), deny(missing_docs))]

// TODO fix this later to export nicely!
// pub mod authentication;
// pub mod authorization;
// mod identity;