]> git.r.bdr.sh - rbdr/lyricli/blame - Package.swift
Update clean command
[rbdr/lyricli] / Package.swift
CommitLineData
a2e8f128
BB
1// swift-tools-version:5.0
2
c3180470
BB
3import PackageDescription
4
5let package = Package(
6 name: "lyricli",
7 dependencies: [
a2e8f128
BB
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",
8f882a0b 17 dependencies: ["HTMLEntities", "Bariloche"])
c3180470
BB
18 ]
19)