v1.10.1
Swift Package Manager
The Swift binding is distributed as a pre-built artifact bundle. No Rust toolchain required.
Recommended — use .binaryTarget directly in your Package.swift:
.binaryTarget(
name: "LiterLlm",
url: "https://github.com/xberg-io/liter-llm/releases/download/v1.10.1/LiterLlm-rs.artifactbundle.zip",
checksum: "b98be923f5e60ef71c2e39bf8c3b3008fe5f190232833b8df0d435f71c795c49"
)Alternative — pin via tag-specific Swift package release:
.package(url: "https://github.com/xberg-io/liter-llm", from: "swift-1.10.1")The main repository's
Package.swiftuses placeholder values. Swift consumers pin to a tag-specific release in theswift-namespace (e.g.from: "swift-1.10.1"), which includes the real artifact bundle checksum. Other languages continue to pin tofrom: "1.10.1".
Artifact bundle: LiterLlm-rs.artifactbundle.zip
Checksum: b98be923f5e60ef71c2e39bf8c3b3008fe5f190232833b8df0d435f71c795c49
Zig
Add to your build.zig.zon:
.dependencies = .{
.liter-llm-zig = .{\n .url = \"https://github.com/xberg-io/liter-llm/releases/download/v1.10.1/liter-llm-zig-v1.10.1.tar.gz\",\n .hash = \"liter_llm-1.10.1-Jfgk_EkDliPlv9KlGGuqEcwm_ZV5jqeQvF1YKVH8BbNF\",\n },\n},\n```\n