aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-04-14 16:11:46 +0200
committerBen Beltran <ben@nsovocal.com>2019-04-14 16:11:46 +0200
commita2e8f128a03663ee5af4461707ed3af55723ff45 (patch)
tree7ee9b516aecd39c47a5846d8c923ab888e7a4263
parentfdafe0d4012af00e0d9cb613a0146924b8fd8eaf (diff)
Update to swift 5 tools
-rw-r--r--Package.swift17
1 files changed, 15 insertions, 2 deletions
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"]),
]
)