Skip to content

v1.9.0-rc.2

Pre-release
Pre-release

Choose a tag to compare

@Goldziher Goldziher released this 27 Jun 06:36
· 6 commits to main since this release
f8876a1

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.9.0-rc.2/LiterLlm-rs.artifactbundle.zip",
    checksum: "d6bf80c0e1b6839d34d2032c345d5f7afe5c66066ccb71a66ce936204ff87a33"
)

Alternative — pin via tag-specific Swift package release:

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

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

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

Zig

Add to your build.zig.zon:

.dependencies = .{
    .liter-llm-zig = .{\n        .url = \"https://github.com/xberg-io/liter-llm/releases/download/v1.9.0-rc.2/liter-llm-zig-v1.9.0-rc.2.tar.gz\",\n        .hash = \"liter_llm-1.9.0-rc.2-Jfgk_D9OhCDXRpClfnAdgelNvd10aNakoQSmjwOYFk-b\",\n    },\n},\n```\n