weave-crdt 0.2.8

CRDT-based coordination for multi-agent code editing. Entity-level claims, conflict detection, and version tracking.
Documentation
1
2
3
4
5
6
7
fn main() {
    // libgit2-sys requires advapi32 on Windows for registry/security APIs
    let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap_or_default();
    if target_os == "windows" {
        println!("cargo:rustc-link-lib=dylib=advapi32");
    }
}