-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (18 loc) · 848 Bytes
/
Package.swift
File metadata and controls
20 lines (18 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "guaka-cli",
dependencies: [
.package(url: "https://github.com/nsomar/Guaka.git", from: "0.0.0"),
.package(url: "https://github.com/getGuaka/Colorizer.git", from: "0.1.0"),
.package(url: "https://github.com/getGuaka/FileUtils.git", from: "0.0.0"),
.package(url: "https://github.com/getGuaka/Run.git", from: "0.1.0"),
.package(url: "https://github.com/getGuaka/StringScanner.git", from: "0.0.0"),
],
targets: [
.target(name: "guaka-cli", dependencies: ["Guaka", "GuakaClILib"]),
.target(name: "GuakaClILib", dependencies: ["Colorizer", "FileUtils", "Run", "StringScanner"]),
.testTarget(name: "GuakaClILibTests", dependencies: ["GuakaClILib"]),
],
swiftLanguageVersions: [4]
)