summaryrefslogtreecommitdiff
path: root/Package.swift
blob: 9adbd39653703733005aea5951c513476950d730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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"])
    ]
)