mirror of https://github.com/cirruslabs/tart.git
46 lines
2.0 KiB
Swift
46 lines
2.0 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/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/antlr/antlr4", branch: "dev"),
|
|
.package(url: "https://github.com/apple/swift-atomics.git", .upToNextMajor(from: "1.0.0")),
|
|
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.50.6"),
|
|
.package(url: "https://github.com/getsentry/sentry-cocoa", from: "7.31.3"),
|
|
.package(url: "https://github.com/cfilipov/TextTable", branch: "master"),
|
|
],
|
|
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: "SwiftDate", package: "SwiftDate"),
|
|
.product(name: "Antlr4Static", package: "Antlr4"),
|
|
.product(name: "Atomics", package: "swift-atomics"),
|
|
.product(name: "Sentry", package: "sentry-cocoa"),
|
|
.product(name: "TextTable", package: "TextTable"),
|
|
], exclude: [
|
|
"OCI/Reference/Makefile",
|
|
"OCI/Reference/Reference.g4",
|
|
"OCI/Reference/Generated/Reference.interp",
|
|
"OCI/Reference/Generated/Reference.tokens",
|
|
"OCI/Reference/Generated/ReferenceLexer.interp",
|
|
"OCI/Reference/Generated/ReferenceLexer.tokens",
|
|
]),
|
|
.testTarget(name: "TartTests", dependencies: ["tart"])
|
|
]
|
|
)
|