-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathPackage.swift
More file actions
19 lines (17 loc) · 721 Bytes
/
Package.swift
File metadata and controls
19 lines (17 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "Erik",
products: [
.library(name: "Erik", targets: ["Erik"]),
],
dependencies: [
.package(url: "https://github.com/tid-kijyun/Kanna.git", .upToNextMajor(from: "5.0.0")),
.package(url: "https://github.com/Thomvis/BrightFutures.git", .upToNextMajor(from: "8.0.0")),
.package(url: "https://github.com/nvzqz/FileKit.git", .upToNextMajor(from: "6.0.0"))
],
targets: [
.target(name: "Erik", dependencies: ["Kanna", "BrightFutures"], path: "Sources"),
.testTarget(name: "ErikTests", dependencies: ["Erik", "Kanna", "BrightFutures", "FileKit"], path: "ErikTests")
]
)