Skip to content

Commit

Permalink
Add SwiftLog to target dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
KKK669 committed Nov 9, 2021
1 parent 8f19d0f commit 0e54bc8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ let package = Package(
targets: ["LoggingPlayground"]
)
],
dependencies: [],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", .upToNextMinor(from: "1.4.2")),
],
targets: [
.target(
name: "LoggingPlayground",
dependencies: []
dependencies: [
.product(name: "Logging", package: "swift-log")
]
),
]
)

0 comments on commit 0e54bc8

Please sign in to comment.