27 lines
596 B
Swift
27 lines
596 B
Swift
// swift-tools-version: 6.3
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
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]
|
|
)
|