-
Notifications
You must be signed in to change notification settings - Fork 10
/
Package.swift
32 lines (31 loc) · 1012 Bytes
/
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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "SwiftStringObfuscator",
platforms: [
.macOS(.v10_13),
],
products: [
.executable(name: "swift_string_obfuscator", targets: ["swift_string_obfuscator"]),
],
dependencies: [
.package(name: "SwiftSyntax", url: "https://github.com/apple/swift-syntax.git", .exact("0.50300.0")),
.package(url: "https://github.com/apple/swift-argument-parser", from: "0.3.0"),
],
targets: [
.target(
name: "swift_string_obfuscator",
dependencies: [
"SwiftStringObfuscatorCore",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.target(
name: "SwiftStringObfuscatorCore",
dependencies: ["SwiftSyntax"]
),
.testTarget(
name: "SwiftStringObfuscatorTests",
dependencies: ["SwiftStringObfuscatorCore"]),
]
)