-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (28 loc) · 872 Bytes
/
Package.swift
File metadata and controls
29 lines (28 loc) · 872 Bytes
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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "Legado",
platforms: [
.macOS(.v13)
],
products: [
.executable(
name: "Legado",
targets: ["Legado"])
],
dependencies: [
.package(url: "https://github.com/groue/GRDB.swift.git", from: "6.0.0"),
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.6.0"),
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "5.0.0"),
],
targets: [
.executableTarget(
name: "Legado",
dependencies: [
.product(name: "GRDB", package: "GRDB.swift"),
.product(name: "SwiftSoup", package: "SwiftSoup"),
.product(name: "SwiftyJSON", package: "SwiftyJSON"),
],
path: "Sources")
]
)