mirror of
https://github.com/mas-cli/mas
synced 2025-03-01 05:17:09 +00:00
20 lines
664 B
Swift
20 lines
664 B
Swift
// swift-tools-version:4.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Commandant",
|
|
products: [
|
|
.library(name: "Commandant", targets: ["Commandant"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/antitypical/Result.git", from: "4.0.0"),
|
|
.package(url: "https://github.com/Quick/Quick.git", from: "1.3.0"),
|
|
.package(url: "https://github.com/Quick/Nimble.git", from: "7.1.2"),
|
|
],
|
|
targets: [
|
|
.target(name: "Commandant", dependencies: ["Result"]),
|
|
.testTarget(name: "CommandantTests", dependencies: ["Commandant", "Quick", "Nimble"]),
|
|
],
|
|
swiftLanguageVersions: [4]
|
|
)
|