-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
67 lines (61 loc) · 2.37 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// swift-tools-version:5.6
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Created by Sam Deane on 31/01/2022.
// All code (c) 2022 - present day, Elegant Chaos.
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
import PackageDescription
let package = Package(
name: "SwiftESP",
platforms: [
.macOS(.v12)
],
products: [
.library(
name: "SwiftESP",
targets: ["SwiftESP"]
),
],
dependencies: [
.package(url: "https://github.com/elegantchaos/AsyncSequenceReader.git", from: "0.1.0"),
.package(url: "https://github.com/elegantchaos/BinaryCoding.git", from: "1.0.2"),
.package(url: "https://github.com/elegantchaos/Bytes.git", branch: "float-support"),
.package(url: "https://github.com/elegantchaos/Coercion.git", from: "1.1.3"),
.package(url: "https://github.com/elegantchaos/ElegantStrings.git", from: "1.1.1"),
.package(url: "https://github.com/elegantchaos/Expressions.git", from: "1.1.1"),
.package(url: "https://github.com/elegantchaos/Files.git", from: "1.2.2"),
.package(url: "https://github.com/elegantchaos/Logger.git", from: "1.7.3"),
.package(url: "https://github.com/tsolomko/SWCompression.git", .upToNextMajor(from: "4.7.0")),
.package(url: "https://github.com/elegantchaos/SwiftCreationEngineCommon.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/elegantchaos/XCTestExtensions.git", from: "1.4.6"),
],
targets: [
.target(
name: "SwiftESP",
dependencies: [
"AsyncSequenceReader",
"BinaryCoding",
"Bytes",
"Coercion",
"ElegantStrings",
"Expressions",
"Logger",
.product(name: "SWCompression", package: "SWCompression"),
"SwiftCreationEngineCommon"
],
resources: [
]
),
.testTarget(
name: "SwiftESPTests",
dependencies: [
"SwiftCreationEngineCommon",
"SwiftESP",
"XCTestExtensions"
],
resources: [
.process("Resources/Examples/"),
.copy("Resources/Unpacked"),
]
),
]
)