nix-remote 0.1.1

The nix remote protocol
Documentation
1
2
3
4
5
6
7
8
9
use nix_remote::NixProxy;

fn main() {
    let mut proxy = NixProxy::new(std::io::stdin(), std::io::stdout());

    proxy.process_connection().unwrap_or_else(|e| {
        eprintln!("{e:?}");
    });
}