blob: 58b329499f7fee20674d6405240efc80b18297a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "lyricli",
dependencies: [
/// 🔡 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"]),
]
)
|