blob: 508b5fbd57ae59ba34db44636da1b6a90994d303 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "lyricli",
dependencies: [
/// HTML Parsing
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.5.3"),
/// 🚩 Command Line Arguments
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2")
],
targets: [
.executableTarget(
name: "lyricli",
dependencies: [
.product(name: "SwiftSoup", package: "SwiftSoup"),
.product(name: "ArgumentParser", package: "swift-argument-parser")
])
]
)
|