Files
NLnetLabs-krill/src/lib.rs
T
Martin HoffmannandGitHub 4a76408530 Code improvements suggested by Clippy 1.87. (#1278)
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.
2025-06-04 14:51:40 +02:00

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;