Some checks failed
[REUSE] Code Quality / REUSE (push) Has been cancelled
[Swift] Code Quality / Swift ${{ matrix.swift }} on ${{ matrix.os }} (macos-latest) (push) Has been cancelled
[Swift] Code Quality / Swift ${{ matrix.swift }} on ${{ matrix.os }} (ubuntu-latest) (push) Has been cancelled
[Swift] Test / Swift ${{ matrix.swift }} on ${{ matrix.os }} (macos-latest) (push) Has been cancelled
[Swift] Test / Swift ${{ matrix.swift }} on ${{ matrix.os }} (ubuntu-latest) (push) Has been cancelled
32 lines
650 B
Swift
32 lines
650 B
Swift
// swift-tools-version: 6.2
|
|
|
|
// SPDX-FileCopyrightText: 2024-2026 Neptuwunium <ada@chronovore.dev>
|
|
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Myna",
|
|
products: [
|
|
.library(
|
|
name: "Myna",
|
|
targets: ["Myna"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0"),
|
|
.package(url: "https://github.com/apple/swift-algorithms", from: "1.2.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Myna",
|
|
dependencies: [
|
|
.product(name: "Algorithms", package: "swift-algorithms")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "MynaTests",
|
|
dependencies: ["Myna"]
|
|
),
|
|
]
|
|
)
|