Initial commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
// 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: "SwiftRunnerTesting",
|
||||
products: [
|
||||
.executable(name: "SwiftRunnerTesting", targets: ["SwiftRunnerTesting"]),
|
||||
],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/onevcat/Rainbow", .upToNextMajor(from: "4.0.0"))
|
||||
],
|
||||
targets: [
|
||||
.executableTarget(
|
||||
name: "SwiftRunnerTesting",
|
||||
dependencies: ["Rainbow"]
|
||||
),
|
||||
.testTarget(
|
||||
name: "SwiftRunnerTestingTests",
|
||||
dependencies: ["SwiftRunnerTesting"]
|
||||
),
|
||||
],
|
||||
swiftLanguageModes: [.v6]
|
||||
)
|
||||
Reference in New Issue
Block a user