X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/85d0536f2e9a3d4596c01b263d76b2b8d9ba70ae..19e7bffcd3401026517e1f02d55f6050d3baf80d:/Package.swift diff --git a/Package.swift b/Package.swift index 5027708..9adbd39 100644 --- a/Package.swift +++ b/Package.swift @@ -1,9 +1,19 @@ +// 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"]) ] )