-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathPackage.swift
More file actions
26 lines (25 loc) · 648 Bytes
/
Package.swift
File metadata and controls
26 lines (25 loc) · 648 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
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "leaf-kit",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6),
],
products: [
.library(name: "LeafKit", targets: ["LeafKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.2.0"),
],
targets: [
.target(name: "LeafKit", dependencies: [
.product(name: "NIO", package: "swift-nio"),
]),
.testTarget(name: "LeafKitTests", dependencies: [
.target(name: "LeafKit"),
]),
]
)