-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPackage.swift
More file actions
59 lines (56 loc) · 1.45 KB
/
Package.swift
File metadata and controls
59 lines (56 loc) · 1.45 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "ParseServerSwift",
platforms: [
.iOS(.v13),
.macCatalyst(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
.library(
name: "ParseServerSwift",
targets: ["ParseServerSwift"]
)
],
dependencies: [
.package(
url: "https://github.com/vapor/vapor.git",
.upToNextMajor(from: "4.121.1")
),
.package(
url: "https://github.com/netreconlab/Parse-Swift.git",
.upToNextMajor(from: "6.0.6")
)
],
targets: [
.target(
name: "ParseServerSwift",
dependencies: [
.product(name: "Vapor", package: "vapor"),
.product(name: "ParseSwift", package: "Parse-Swift")
],
swiftSettings: swiftSettings
),
.executableTarget(
name: "App",
dependencies: [.target(name: "ParseServerSwift")],
swiftSettings: swiftSettings
),
.testTarget(
name: "ParseServerSwiftTests",
dependencies: [
.target(name: "ParseServerSwift"),
.product(name: "XCTVapor", package: "vapor")
],
swiftSettings: swiftSettings
)
]
)
var swiftSettings: [SwiftSetting] {
[
.enableUpcomingFeature("ExistentialAny")
]
}