snix_store/
lib.rs

1pub mod composition;
2pub mod fixtures;
3pub mod import;
4pub mod nar;
5pub mod path_info;
6pub mod pathinfoservice;
7pub mod proto;
8pub mod utils;
9
10#[cfg(test)]
11mod tests;
12
13// Used as user agent in various HTTP Clients
14const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));
15
16// That's what the rstest_reuse README asks us do, and fails about being unable
17// to find rstest_reuse in crate root.
18#[cfg(test)]
19#[allow(clippy::single_component_path_imports)]
20use rstest_reuse;