1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
// SPDX-License-Identifier: Apache-2.0 // Copyright (c) 2026 Pierre Gronau, ndaal in Cologne //! CSAF core: storage, validation, sidecar generation, import/export. // Test-only relaxations. Production code remains strict. #![cfg_attr( test, allow( clippy::expect_used, clippy::unwrap_used, clippy::panic, clippy::indexing_slicing, clippy::too_many_lines, clippy::similar_names ) )] pub mod audit_export; pub mod config; pub mod dump; pub mod error; pub mod export; pub mod fs; pub mod import; #[cfg(feature = "oasis-validator")] pub mod oasis; pub mod path_security; pub mod sidecar; pub mod storage; pub mod validation;