Skip to content

Commit

Permalink
Merge pull request #150 from Bouke/swift-54
Browse files Browse the repository at this point in the history
Upgrade swift-tools-version to 5.4
  • Loading branch information
Bouke authored Aug 12, 2022
2 parents c9156de + cdfbb8c commit c02ee7d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.3
// swift-tools-version:5.4

import PackageDescription

Expand Down Expand Up @@ -39,18 +39,18 @@ let package = Package(
.product(name: "Crypto", package: "swift-crypto"),
],
exclude: ["Base/Predefined/README"]),
.target(name: "HAPDemo",
dependencies: [
"HAP",
.product(name: "Logging", package: "swift-log")
]),
.executableTarget(name: "HAPDemo",
dependencies: [
"HAP",
.product(name: "Logging", package: "swift-log")
]),
.testTarget(name: "HAPTests", dependencies: ["HAP"]),
]
)

#if os(macOS)
package.products.append(.executable(name: "hap-update", targets: ["HAPInspector"]))
package.targets.append(.target(name: "HAPInspector"))
package.targets.append(.executableTarget(name: "HAPInspector"))
#endif

#if os(Linux)
Expand Down

0 comments on commit c02ee7d

Please sign in to comment.