-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
49 lines (46 loc) · 1.99 KB
/
Package.swift
File metadata and controls
49 lines (46 loc) · 1.99 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
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "ReplicantSwift",
platforms: [
.iOS(.v15),
.macOS(.v14),
],
products: [.library(name: "ReplicantSwift", targets: ["ReplicantSwift"])],
dependencies: [
.package(url: "https://github.com/apple/swift-crypto", from: "3.2.0"),
.package(url: "https://github.com/apple/swift-log", from: "1.5.3"),
.package(url: "https://github.com/OperatorFoundation/Datable", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/Gardener", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/Ghostwriter", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/KeychainTypes", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/Monolith", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/ShadowSwift", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/SwiftHexTools", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/SwiftQueue", branch: "main"),
.package(url: "https://github.com/OperatorFoundation/TransmissionAsync", branch: "main"),
],
targets: [
.target(
name: "ReplicantSwift",
dependencies: [
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "Logging", package: "swift-log"),
"Datable",
"Gardener",
"Ghostwriter",
"KeychainTypes",
"Monolith",
"ShadowSwift",
"SwiftHexTools",
"SwiftQueue",
"TransmissionAsync"
]
),
.testTarget(
name: "ReplicantSwiftTests",
dependencies: ["ReplicantSwift"]),
],
swiftLanguageVersions: [.v5]
)