X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/a2e8f128a03663ee5af4461707ed3af55723ff45..555e84ce6292e645b1fb5376a31e8b227c473fdc:/Package.swift diff --git a/Package.swift b/Package.swift index 58b3294..508b5fb 100644 --- a/Package.swift +++ b/Package.swift @@ -1,22 +1,22 @@ -// 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"), + /// HTML Parsing + .package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.5.3"), /// 🚩 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"]), - .testTarget( - name: "lyricliTests", - dependencies: ["lyricli"]), + dependencies: [ + .product(name: "SwiftSoup", package: "SwiftSoup"), + .product(name: "ArgumentParser", package: "swift-argument-parser") + ]) ] )