git-internal 0.7.6

High-performance Rust library for Git internal objects, Pack files, and AI-assisted development objects (Intent, Plan, Task, Run, Evidence, Decision) with delta compression, streaming I/O, and smart protocol support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# @generated by `cargo buckal`

load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")

def system_demo_rust_toolchain():
    # Buck prelude only maps a small set of CPU constraints to Rust triples by
    # default. We provide an explicit mapping so `--target-platforms` works.
    system_rust_toolchain(
        name = "rust",
        rustc_target_triple = select({
            "prelude//os/constraints:linux": "x86_64-unknown-linux-gnu",
            "prelude//os/constraints:macos": "aarch64-apple-darwin",
            "prelude//os/constraints:windows": "x86_64-pc-windows-msvc",
            "DEFAULT": "x86_64-unknown-linux-gnu",
        }),
        default_edition = "2021",
        visibility = ["PUBLIC"],
    )