-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathPackage.swift
More file actions
27 lines (25 loc) · 785 Bytes
/
Package.swift
File metadata and controls
27 lines (25 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// swift-tools-version:5.10
import PackageDescription
let package = Package(
name: "PulseLogHandler",
platforms: [
.iOS(.v15),
.tvOS(.v15),
.macOS(.v13),
.watchOS(.v9)
],
products: [
.library(name: "PulseLogHandler", targets: ["PulseLogHandler"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.2"),
.package(url: "https://github.com/kean/pulse.git", from: "5.0.0")
],
targets: [
.target(name: "PulseLogHandler", dependencies: [
.product(name: "Pulse", package: "Pulse"),
.product(name: "Logging", package: "swift-log")
]),
.testTarget(name: "PulseLogHandlerTests", dependencies: ["PulseLogHandler"])
]
)