Change-Id: I8eb74c5a9457b88ab51bd88084591a4c7c5cdbcc Reviewed-on: https://cl.tvl.fyi/c/depot/+/12849 Reviewed-by: Domen Kožar <domen@cachix.org> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
19 lines
485 B
Rust
19 lines
485 B
Rust
pub mod composition;
|
|
pub mod import;
|
|
pub mod nar;
|
|
pub mod path_info;
|
|
pub mod pathinfoservice;
|
|
pub mod proto;
|
|
pub mod utils;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
// Used as user agent in various HTTP Clients
|
|
const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));
|
|
|
|
// 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;
|