initial commit

This commit is contained in:
2026-08-28 18:18:16 +02:00
commit 3615193ae4
4 changed files with 56 additions and 0 deletions
+26
View File
@@ -0,0 +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]
)