-
Notifications
You must be signed in to change notification settings - Fork 125
38 lines (35 loc) · 1.26 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
// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "XCLogParser",
products: [
.executable(name: "xclogparser", targets: ["XCLogParserApp"]),
.library(name: "XCLogParser", targets: ["XCLogParser"])
],
dependencies: [
.package(url: "https://github.com/1024jp/GzipSwift", from: "4.1.0"),
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.16.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "0.15.0"),
.package(url: "https://github.com/kylef/PathKit.git", from: "1.0.0"),
.package(url: "https://github.com/antitypical/Result.git", from: "4.0.0"),
],
targets: [
.target(
name:"XcodeHasher",
dependencies: ["CryptoSwift"]
),
.target(
name: "XCLogParser",
dependencies: ["Gzip", "XcodeHasher", "PathKit"]
),
.target(
name: "XCLogParserApp",
dependencies: ["XCLogParser", "Commandant", "Result"]
),
.testTarget(
name: "XCLogParserTests",
dependencies: ["XCLogParser"]
),
]
)