aboutsummaryrefslogtreecommitdiff
path: root/Package.swift
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2023-04-10 15:00:55 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2023-04-10 15:00:55 +0200
commit3a398bc031f1a1659073208e83d778a357a8243a (patch)
treeabbef70e09ae49e14d0f921af0358ac6ae3fc21c /Package.swift
parent6e94967396373626e5f6ee228fbba5fcb111f3cb (diff)
Use swiftsoup for parsing
Diffstat (limited to 'Package.swift')
-rw-r--r--Package.swift8
1 files changed, 7 insertions, 1 deletions
diff --git a/Package.swift b/Package.swift
index 2f49d10..508b5fb 100644
--- a/Package.swift
+++ b/Package.swift
@@ -5,12 +5,18 @@ 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: "ArgumentParser", package: "swift-argument-parser")])
+ dependencies: [
+ .product(name: "SwiftSoup", package: "SwiftSoup"),
+ .product(name: "ArgumentParser", package: "swift-argument-parser")
+ ])
]
)