sui-compat 0.1.42

Clean-room Nix format and protocol compatibility layer (NAR, store paths, ATerm, derivations)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Clean-room Nix format and protocol compatibility layer.
//!
//! All types implemented from scratch based on public Nix documentation.
//! No vendored code from any GPL-licensed project.

pub mod content_address;
pub mod derivation;
pub mod flake;
pub mod flake_ref;
pub mod hash;
pub mod nar;
pub mod narinfo;
pub mod signature;
pub mod source;
pub mod store_path;
pub mod versions;
pub mod wire;