forked from CombineCommunity/CombineExt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
26 lines (24 loc) · 792 Bytes
/
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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "CombineExt",
platforms: [
.iOS(.v13), .tvOS(.v10), .macOS(.v10_12), .watchOS(.v3)
],
products: [
.library(name: "CombineExt", targets: ["CombineExt"]),
],
dependencies: [
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "0.5.3"),
],
targets: [
.target(name: "CombineExt", dependencies: [], path: "Sources"),
.testTarget(name: "CombineExtTests",
dependencies: [
"CombineExt",
.product(name: "CombineSchedulers", package: "combine-schedulers")
],
path: "Tests"),
],
swiftLanguageVersions: [.v5]
)