Skip to content

v1.11.3

Choose a tag to compare

@Goldziher Goldziher released this 27 Jul 07:59
49e2516

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.3/LiterLlm-rs.artifactbundle.zip",
    checksum: "95b9793266752ab35d36aab7bd28206767d672941b9f5ede26ad5117e5090c59"
)

Alternative — pin via tag-specific Swift package release:

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

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.3"), which includes the real artifact bundle checksum. Other languages continue to pin to from: "1.11.3".

Artifact bundle: LiterLlm-rs.artifactbundle.zip
Checksum: 95b9793266752ab35d36aab7bd28206767d672941b9f5ede26ad5117e5090c59

Zig

Add to your build.zig.zon:

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