Skip to content

Commit

Permalink
add additional Package.swift for Swift 5.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepistrol committed Nov 26, 2024
1 parent 604101b commit 631e648
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "OllamaKit",
platforms: [
.iOS(.v15),
.macOS(.v12),
.macCatalyst(.v15)
],
products: [
.library(
name: "OllamaKit",
targets: ["OllamaKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin.git", .upToNextMajor(from: "1.3.0"))
],
targets: [
.target(
name: "OllamaKit",
dependencies: []),
.testTarget(
name: "OllamaKitTests",
dependencies: ["OllamaKit"]),
]
)

0 comments on commit 631e648

Please sign in to comment.