Skip to content

v1.10.0

Choose a tag to compare

@Goldziher Goldziher released this 19 Jul 19:51
b8c39e6

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.10.0/LiterLlm-rs.artifactbundle.zip",
    checksum: "6041aed035a27a91222898a86b7fe078c4224c658982f0b20fc1ad18d65a5823"
)

Alternative — pin via tag-specific Swift package release:

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

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

Artifact bundle: LiterLlm-rs.artifactbundle.zip
Checksum: 6041aed035a27a91222898a86b7fe078c4224c658982f0b20fc1ad18d65a5823

Zig

Add to your build.zig.zon:

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