mirror of https://github.com/cirruslabs/tart.git
34 lines
1.3 KiB
Swift
34 lines
1.3 KiB
Swift
// swift-tools-version:5.7
|
|
|
|
import PackageDescription
|
|
let package = Package(
|
|
name: "Tart",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
products: [
|
|
.executable(name: "tart", targets: ["tart"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.1.2"),
|
|
.package(url: "https://github.com/mhdhejazi/Dynamic", branch: "master"),
|
|
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.9.2"),
|
|
.package(url: "https://github.com/apple/swift-algorithms", from: "1.0.0"),
|
|
.package(url: "https://github.com/apple/swift-async-algorithms", branch: "main"),
|
|
.package(url: "https://github.com/malcommac/SwiftDate", from: "6.3.1"),
|
|
.package(url: "https://github.com/sushichop/Puppy", from: "0.5.1")
|
|
],
|
|
targets: [
|
|
.executableTarget(name: "tart", dependencies: [
|
|
.product(name: "Algorithms", package: "swift-algorithms"),
|
|
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
|
|
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
|
.product(name: "Dynamic", package: "Dynamic"),
|
|
.product(name: "Parsing", package: "swift-parsing"),
|
|
.product(name: "SwiftDate", package: "SwiftDate"),
|
|
.product(name: "Puppy", package: "Puppy"),
|
|
]),
|
|
.testTarget(name: "TartTests", dependencies: ["tart"])
|
|
]
|
|
)
|