-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
38 lines (36 loc) · 1.55 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
33
34
35
36
37
38
// swift-tools-version:5.10
import PackageDescription
let package = Package(
name: "mvt-postgis",
platforms: [
.macOS(.v13),
],
products: [
.library(name: "MVTPostgis", targets: ["MVTPostgis"]),
],
dependencies: [
.package(url: "https://github.com/Outdooractive/mvt-tools", from: "1.8.5"),
.package(url: "https://github.com/Outdooractive/gis-tools", from: "1.8.4"),
.package(url: "https://github.com/Outdooractive/PostgresConnectionPool.git", from: "0.8.1"),
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.22.1"),
.package(url: "https://github.com/apple/swift-collections", from: "1.1.1"),
.package(url: "https://github.com/yahoojapan/SwiftyXMLParser", from: "5.6.0"),
.package(url: "https://github.com/jpsim/Yams", from: "5.1.3"),
],
targets: [
.target(
name: "MVTPostgis",
dependencies: [
.product(name: "GISTools", package: "gis-tools"),
.product(name: "MVTTools", package: "mvt-tools"),
.product(name: "PostgresConnectionPool", package: "PostgresConnectionPool"),
.product(name: "PostgresNIO", package: "postgres-nio"),
.product(name: "Collections", package: "swift-collections"),
.product(name: "SwiftyXMLParser", package: "SwiftyXMLParser"),
.product(name: "Yams", package: "Yams"),
]),
.testTarget(
name: "MVTPostgisTests",
dependencies: ["MVTPostgis"])
]
)