mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-08-21 15:12:33 +02:00
This PR implements some of the suggestions made by Clippy 1.87. Some of the suggestions have been ignored by way of allow attributes. In particular, we allow the large size of commons::error::Error for now, but this will need to be fixed in another PR.
15 lines
290 B
Rust
15 lines
290 B
Rust
//! The _Krill_ library crate.
|
|
|
|
// XXX Temporary allow for `commons::error::Error` until we refactor that.
|
|
#![allow(clippy::result_large_err)]
|
|
|
|
pub mod api;
|
|
pub mod cli;
|
|
pub mod commons;
|
|
pub mod config;
|
|
pub mod constants;
|
|
pub mod daemon;
|
|
pub mod server;
|
|
pub mod tasigner;
|
|
pub mod upgrades;
|