fabaccess-bffh/bffhd/lib.rs

32 lines
636 B
Rust
Raw Normal View History

2022-03-10 20:52:34 +01:00
#![warn(unused_imports, unused_import_braces)]
2021-10-28 01:10:35 +02:00
#![warn(missing_debug_implementations)]
2021-12-06 21:53:42 +01:00
#![warn(missing_docs)]
#![warn(missing_crate_level_docs)]
2021-10-28 00:32:25 +02:00
2021-10-28 01:10:35 +02:00
//! Diflouroborane
//!
2022-03-08 16:41:38 +01:00
//! This is the capnp component of the FabAccess project.
2021-10-28 01:10:35 +02:00
//! The entry point of bffhd can be found in [bin/bffhd/main.rs](../bin/bffhd/main.rs)
2021-10-27 23:20:35 +02:00
2021-10-28 01:10:35 +02:00
/// Internal Databases build on top of LMDB, a mmap()'ed B-tree DB optimized for reads
2021-10-27 23:20:35 +02:00
pub mod db;
2021-11-26 02:25:48 +01:00
2021-10-28 01:10:35 +02:00
/// Shared error type
2021-10-27 23:20:35 +02:00
pub mod error;
2021-11-26 02:25:48 +01:00
2021-11-26 21:01:43 +01:00
pub mod users;
2022-03-08 18:52:49 +01:00
pub mod authentication;
2022-03-10 20:52:34 +01:00
pub mod authorization;
2021-11-26 21:01:43 +01:00
2021-10-28 01:10:35 +02:00
/// Resources
2021-11-26 02:25:48 +01:00
pub mod resources;
pub mod actors;
pub mod initiators;
pub mod sensors;
2022-03-08 16:41:38 +01:00
pub mod capnp;
2021-11-26 21:01:43 +01:00
2021-11-26 02:25:48 +01:00
pub mod utils;