hyprwire 0.2.8

A fast and consistent wire protocol for IPC
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    hyprwire_scanner::configure()
        .with_targets(hyprwire_scanner::Targets::CLIENT | hyprwire_scanner::Targets::SERVER)
        .compile(&[
            "examples/protocols/protocol-v1.xml",
            "benches/protocols/bench-protocol-v1.xml",
        ])
        .unwrap();
}