-
-
Notifications
You must be signed in to change notification settings - Fork 115
80 lines (78 loc) · 2.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "fluent-kit",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v13),
],
products: [
.library(name: "FluentKit", targets: ["FluentKit"]),
.library(name: "FluentBenchmark", targets: ["FluentBenchmark"]),
.library(name: "FluentSQL", targets: ["FluentSQL"]),
.library(name: "XCTFluent", targets: ["XCTFluent"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.29.3"),
.package(url: "https://github.com/vapor/async-kit.git", from: "1.19.0"),
],
targets: [
.target(
name: "FluentKit",
dependencies: [
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOCore", package: "swift-nio"),
.product(name: "Logging", package: "swift-log"),
.product(name: "AsyncKit", package: "async-kit"),
.product(name: "SQLKit", package: "sql-kit"),
],
swiftSettings: swiftSettings
),
.target(
name: "FluentBenchmark",
dependencies: [
.target(name: "FluentKit"),
.target(name: "FluentSQL"),
.product(name: "SQLKit", package: "sql-kit"),
.product(name: "SQLKitBenchmark", package: "sql-kit"),
],
swiftSettings: swiftSettings
),
.target(
name: "FluentSQL",
dependencies: [
.product(name: "SQLKit", package: "sql-kit"),
.target(name: "FluentKit"),
],
swiftSettings: swiftSettings
),
.target(
name: "XCTFluent",
dependencies: [
.product(name: "NIOEmbedded", package: "swift-nio"),
.target(name: "FluentKit"),
],
swiftSettings: swiftSettings
),
.testTarget(
name: "FluentKitTests",
dependencies: [
.target(name: "FluentBenchmark"),
.target(name: "FluentSQL"),
.target(name: "XCTFluent"),
],
swiftSettings: swiftSettings
),
]
)
var swiftSettings: [SwiftSetting] { [
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("DisableOutwardActorInference"),
.enableExperimentalFeature("StrictConcurrency=complete"),
] }