Skip to content

v1.11.1

Choose a tag to compare

@Goldziher Goldziher released this 26 Jul 06:34
53a61f8

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.1/LiterLlm-rs.artifactbundle.zip",
    checksum: "cf090b7e0f9ec180fe876faa531840ad28f60870cf80f5161296af9e30f145e6"
)

Alternative — pin via tag-specific Swift package release:

.package(url: "https://github.com/xberg-io/liter-llm", from: "swift-1.11.1")

The main repository's Package.swift uses placeholder values. Swift consumers pin to a tag-specific release in the swift- namespace (e.g. from: "swift-1.11.1"), which includes the real artifact bundle checksum. Other languages continue to pin to from: "1.11.1".

Artifact bundle: LiterLlm-rs.artifactbundle.zip
Checksum: cf090b7e0f9ec180fe876faa531840ad28f60870cf80f5161296af9e30f145e6

Zig

Add to your build.zig.zon:

.dependencies = .{
    .liter-llm-zig = .{\n        .url = \"https://github.com/xberg-io/liter-llm/releases/download/v1.11.1/liter-llm-zig-v1.11.1.tar.gz\",\n        .hash = \"liter_llm-1.11.1-Jfgk_GIGpiPLzjqLaFbrRSldkbrLjyp1oES1_Wk9Ynzm\",\n    },\n},\n```\n