-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
32 lines (30 loc) · 1.2 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
32
// swift-tools-version: 5.9
import PackageDescription
import CompilerPluginSupport
let package = Package(
name: "FluentData",
platforms: [.iOS(.v14), .macOS(.v12), .watchOS(.v7), .tvOS(.v14)],
products: [
.library(
name: "FluentData",
targets: ["FluentData"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-nio-transport-services", from: "1.19.0"),
.package(url: "https://github.com/vapor/fluent-kit.git", from: "1.44.0"),
.package(url: "https://github.com/vapor/fluent-sqlite-driver.git", from: "4.5.0"),
.package(url: "https://github.com/realm/SwiftLint.git", from: "0.53.0")
],
targets: [
.target(
name: "FluentData",
dependencies: [
.product(name: "NIOTransportServices", package: "swift-nio-transport-services"),
.product(name: "FluentKit", package: "fluent-kit"),
.product(name: "FluentSQLiteDriver", package: "fluent-sqlite-driver"),
],
plugins: [.plugin(name: "SwiftLintPlugin", package: "SwiftLint")]
),
]
)