Skip to content

Commit

Permalink
code: Added swift-collections.git package dependency & Specified mi…
Browse files Browse the repository at this point in the history
…nimum platform version
  • Loading branch information
YourMJK committed Jul 6, 2024
1 parent 96fb7ba commit 6e1487b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ import PackageDescription

let package = Package(
name: "dreimetadaten",
platforms: [.macOS(.v10_15)],
products: [
.executable(name: "dreimetadaten", targets: ["dreimetadaten"]),
],
dependencies: [
.package(url: "https://github.com/YourMJK/CommandLineTool", from: "1.1.0"),
.package(url: "https://github.com/dehesa/CodableCSV", from: "0.6.0"),
.package(url: "https://github.com/groue/GRDB.swift", from: "6.27.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"),
],
targets: [
.executableTarget(
Expand All @@ -19,6 +21,7 @@ let package = Package(
"CommandLineTool",
"CodableCSV",
.product(name: "GRDB", package: "GRDB.swift"),
.product(name: "Collections", package: "swift-collections")
],
path: "dreimetadaten"
)
Expand Down

0 comments on commit 6e1487b

Please sign in to comment.