Skip to content

v1.9.3

Choose a tag to compare

@Goldziher Goldziher released this 04 Jul 08:59
86cf5d5

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

Alternative — pin via tag-specific Swift package release:

.package(url: "https://github.com/xberg-io/liter-llm", from: "swift-1.9.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.9.3"), which includes the real artifact bundle checksum. Other languages continue to pin to from: "1.9.3".

Artifact bundle: LiterLlm-rs.artifactbundle.zip
Checksum: 35434a635f88610225245ea1bf80418c1de130d1f735dede461d3c00a67a0d20

Zig

Add to your build.zig.zon:

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