aboutsummaryrefslogtreecommitdiff
path: root/Package.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Package.swift')
-rw-r--r--Package.swift11
1 files changed, 4 insertions, 7 deletions
diff --git a/Package.swift b/Package.swift
index 9adbd39..2f49d10 100644
--- a/Package.swift
+++ b/Package.swift
@@ -1,19 +1,16 @@
-// swift-tools-version:5.0
+// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "lyricli",
dependencies: [
- /// 🔡 Tools for working with HTML entities
- .package(url: "https://github.com/IBM-Swift/swift-html-entities.git", from: "3.0.11"),
-
/// 🚩 Command Line Arguments
- .package(url: "https://github.com/Subito-it/Bariloche", from: "1.0.4")
+ .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2")
],
targets: [
- .target(
+ .executableTarget(
name: "lyricli",
- dependencies: ["HTMLEntities", "Bariloche"])
+ dependencies: [.product(name: "ArgumentParser", package: "swift-argument-parser")])
]
)