sui-compat 0.1.203

Clean-room Nix format and protocol compatibility layer (NAR, store paths, ATerm, derivations)
Documentation
//! 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;
/// The names Nix resolves as bare identifiers — one list, every engine.
pub mod scope;
pub mod versions;
pub mod wire;