make the thing

This commit is contained in:
2026-08-31 21:56:09 +02:00
parent 3615193ae4
commit f8b5923079
20 changed files with 931 additions and 34 deletions
+20 -20
View File
@@ -1,26 +1,26 @@
// swift-tools-version: 6.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "aria",
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.executableTarget(
name: "aria",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.testTarget(
name: "ariaTests",
dependencies: ["aria"]
),
],
swiftLanguageModes: [.v6]
name: "aria",
platforms: [.macOS(.v26)],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
.package(url: "https://github.com/tuist/Noora/", from: "0.56.0"),
],
targets: [
.executableTarget(
name: "aria",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Noora", package: "Noora"),
]
),
.testTarget(
name: "ariaTests",
dependencies: ["aria"]
),
],
swiftLanguageModes: [.v6]
)