-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
31 lines (29 loc) · 1.12 KB
/
Package.swift
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
28
29
30
31
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Sync",
platforms: [.macOS(.v11), .iOS(.v14), .watchOS(.v6), .tvOS(.v14)],
products: [
.library(
name: "Sync",
targets: ["Sync"]),
],
dependencies: [
.package(url: "https://github.com/OpenCombine/OpenCombine.git", from: "0.13.0"),
.package(url: "https://github.com/nerdsupremacist/AssociatedTypeRequirementsKit.git", .upToNextMinor(from: "0.3.2")),
.package(url: "https://github.com/Flight-School/MessagePack.git", from: "1.2.4"),
],
targets: [
.target(
name: "Sync",
dependencies: [
.product(name: "OpenCombineShim", package: "OpenCombine"),
.product(name: "AssociatedTypeRequirementsKit", package: "AssociatedTypeRequirementsKit"),
.product(name: "MessagePack", package: "MessagePack"),
]),
.testTarget(
name: "SyncTests",
dependencies: ["Sync"]),
]
)