7d6b6f703b
this was made so tests can be ran on github
23 lines
506 B
Swift
23 lines
506 B
Swift
// swift-tools-version: 6.1
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "sonya",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
dependencies: [
|
|
.package(path: "Sources/sonyalib"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "sonya",
|
|
dependencies: [
|
|
.product(name: "sonyalib", package: "sonyalib"),
|
|
]
|
|
),
|
|
]
|
|
)
|