This change includes only the basic nix handshake protocol handling and sets up a client session. The only supported operation at this point is SetOptions. Additional operations will be implemented in subsequent cls. Change-Id: I3eccd9e0ceb270c3865929543c702f1491768852 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12743 Autosubmit: Vladimir Kryachko <v.kryachko@gmail.com> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Reviewed-by: edef <edef@edef.eu> Reviewed-by: Brian Olsen <me@griff.name>
20 lines
367 B
Rust
20 lines
367 B
Rust
extern crate self as nix_compat;
|
|
|
|
pub(crate) mod aterm;
|
|
pub mod derivation;
|
|
pub mod nar;
|
|
pub mod narinfo;
|
|
pub mod nix_http;
|
|
pub mod nixbase32;
|
|
pub mod nixcpp;
|
|
pub mod nixhash;
|
|
pub mod path_info;
|
|
pub mod store_path;
|
|
|
|
#[cfg(feature = "wire")]
|
|
pub mod wire;
|
|
|
|
#[cfg(feature = "daemon")]
|
|
pub mod nix_daemon;
|
|
#[cfg(feature = "daemon")]
|
|
pub use nix_daemon::worker_protocol;
|