2024-01-08 09:50:13 +01:00
|
|
|
pub mod import;
|
2023-02-15 15:00:27 +02:00
|
|
|
pub mod nar;
|
2023-02-13 18:55:40 +01:00
|
|
|
pub mod pathinfoservice;
|
2023-01-02 14:37:08 +01:00
|
|
|
pub mod proto;
|
2023-12-31 16:33:26 +02:00
|
|
|
pub mod utils;
|
2023-01-02 14:37:08 +01:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
2024-03-27 12:11:39 +01:00
|
|
|
|
|
|
|
// That's what the rstest_reuse README asks us do, and fails about being unable
|
|
|
|
// to find rstest_reuse in crate root.
|
|
|
|
#[cfg(test)]
|
|
|
|
#[allow(clippy::single_component_path_imports)]
|
|
|
|
use rstest_reuse;
|