forked from MobileNativeFoundation/XCLogParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
45 lines (42 loc) · 1.4 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
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "XCLogParser",
platforms: [.macOS(.v13)],
products: [
.executable(name: "xclogparser", targets: ["XCLogParserApp"]),
.library(name: "XCLogParser", targets: ["XCLogParser"])
],
dependencies: [
.package(url: "https://github.com/1024jp/GzipSwift", from: "5.2.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", exact: "1.7.2"),
.package(url: "https://github.com/kylef/PathKit.git", from: "1.0.1"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.0"),
],
targets: [
.target(
name:"XcodeHasher",
dependencies: ["CryptoSwift"]
),
.target(
name: "XCLogParser",
dependencies: [
.product(name: "Gzip", package: "GzipSwift"),
"XcodeHasher",
"PathKit"
]
),
.executableTarget(
name: "XCLogParserApp",
dependencies: [
"XCLogParser",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]
),
.testTarget(
name: "XCLogParserTests",
dependencies: ["XCLogParser"]
),
]
)