v1.11.2
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.11.2/LiterLlm-rs.artifactbundle.zip",
checksum: "a90d925e9c46be2b3f1940480e13bd87624ecd979a42a3de38ee50e07457a718"
)Alternative — pin via tag-specific Swift package release:
.package(url: "https://github.com/xberg-io/liter-llm", from: "swift-1.11.2")The main repository's
Package.swiftuses placeholder values. Swift consumers pin to a tag-specific release in theswift-namespace (e.g.from: "swift-1.11.2"), which includes the real artifact bundle checksum. Other languages continue to pin tofrom: "1.11.2".
Artifact bundle: LiterLlm-rs.artifactbundle.zip
Checksum: a90d925e9c46be2b3f1940480e13bd87624ecd979a42a3de38ee50e07457a718
Zig
Add to your build.zig.zon:
.dependencies = .{
.liter-llm-zig = .{\n .url = \"https://github.com/xberg-io/liter-llm/releases/download/v1.11.2/liter-llm-zig-v1.11.2.tar.gz\",\n .hash = \"liter_llm-1.11.2-Jfgk_LznyyP5FWQwgidj6hTuX4ht8F-eeS8RT_cH_xP4\",\n },\n},\n```\n