]>
Commit | Line | Data |
---|---|---|
1 | // swift-tools-version:5.0 | |
2 | ||
3 | import PackageDescription | |
4 | ||
5 | let package = Package( | |
6 | name: "lyricli", | |
7 | dependencies: [ | |
8 | /// 🔡 Tools for working with HTML entities | |
9 | .package(url: "https://github.com/IBM-Swift/swift-html-entities.git", from: "3.0.11"), | |
10 | ||
11 | /// 🚩 Command Line Arguments | |
12 | .package(url: "https://github.com/Subito-it/Bariloche", from: "1.0.4") | |
13 | ], | |
14 | targets: [ | |
15 | .target( | |
16 | name: "lyricli", | |
17 | dependencies: ["HTMLEntities", "Bariloche"]) | |
18 | ] | |
19 | ) |