cf86a098cf
This provides a nice wrapper struct to deal with versions. Change-Id: I6acc03bc9f8d84a0583196073b52776c45d3fe92 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11454 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: picnoir picnoir <picnoir@alternativebit.fr>
18 lines
353 B
Rust
18 lines
353 B
Rust
pub(crate) mod aterm;
|
|
pub mod derivation;
|
|
pub mod nar;
|
|
pub mod narinfo;
|
|
pub mod nixbase32;
|
|
pub mod nixhash;
|
|
pub mod path_info;
|
|
pub mod store_path;
|
|
|
|
#[cfg(feature = "wire")]
|
|
pub mod wire;
|
|
|
|
#[cfg(feature = "wire")]
|
|
mod nix_daemon;
|
|
#[cfg(feature = "wire")]
|
|
pub use nix_daemon::worker_protocol;
|
|
#[cfg(feature = "wire")]
|
|
pub use nix_daemon::ProtocolVersion;
|