-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
34 lines (32 loc) · 886 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
27
28
29
30
31
32
33
34
// swift-tools-version: 5.5.2
import PackageDescription
let package = Package(
name: "ParseCertificateAuthority",
platforms: [
.iOS(.v13),
.macCatalyst(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
.library(
name: "ParseCertificateAuthority",
targets: ["ParseCertificateAuthority"])
],
dependencies: [
.package(url: "https://github.com/netreconlab/Parse-Swift.git",
.upToNextMajor(from: "5.8.1"))
],
targets: [
.target(
name: "ParseCertificateAuthority",
dependencies: [
.product(name: "ParseSwift", package: "Parse-Swift")
]
),
.testTarget(
name: "ParseCertificateAuthorityTests",
dependencies: ["ParseCertificateAuthority"])
]
)