X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/fdafe0d4012af00e0d9cb613a0146924b8fd8eaf..a2e8f128a03663ee5af4461707ed3af55723ff45:/Package.swift diff --git a/Package.swift b/Package.swift index 5027708..58b3294 100644 --- a/Package.swift +++ b/Package.swift @@ -1,9 +1,22 @@ +// swift-tools-version:5.0 + import PackageDescription let package = Package( name: "lyricli", dependencies: [ - .Package(url: "https://github.com/rbdr/CommandLineKit", majorVersion: 4, minor: 0), - .Package(url: "https://github.com/IBM-Swift/swift-html-entities.git", majorVersion: 3, minor: 0) + /// 🔡 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") + ], + targets: [ + .target( + name: "lyricli", + dependencies: ["HTMLEntities", "Bariloche"]), + .testTarget( + name: "lyricliTests", + dependencies: ["lyricli"]), ] )