-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathPackage.swift
30 lines (27 loc) · 1.02 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
// swift-tools-version:4.1
import PackageDescription
let package = Package(
name: "FluentPostGIS",
products: [
// FluentPostgreSQL support for PostGIS
.library(
name: "FluentPostGIS",
targets: ["FluentPostGIS"]),
],
dependencies: [
// Swift ORM framework (queries, models, and relations) for building NoSQL and SQL database integrations.
.package(url: "https://github.com/vapor/fluent.git", from: "3.0.0"),
// 🐘 Non-blocking, event-driven Swift client for PostgreSQL.
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0"),
// Well Known Binary Encoding and Decoding
.package(url: "https://github.com/plarson/WKCodable", from: "0.1.1"),
],
targets: [
.target(
name: "FluentPostGIS",
dependencies: ["FluentPostgreSQL", "WKCodable"]),
.testTarget(
name: "FluentPostGISTests",
dependencies: ["FluentBenchmark", "FluentPostGIS"]),
]
)