-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (22 loc) · 991 Bytes
/
Package.swift
File metadata and controls
24 lines (22 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "Validator",
products: [
.library(name: "RequestEngine", targets: ["RequestEngine"]),
.library(name: "Infrastructure", targets: ["Infrastructure"]),
.library(name: "Scenarios", targets: ["Scenarios"]),
.executable(name: "Validator", targets: ["Validator"]),
],
dependencies: [
.package(url: "https://github.com/onevcat/Rainbow.git", from: "2.1.0"),
.package(url: "https://github.com/iamjono/LoremSwiftum.git", from: "0.0.3"),
.package(url: "https://github.com/kylef/Commander.git", from: "0.8.0"),
],
targets: [
.target(name: "RequestEngine", dependencies: []),
.target(name: "Infrastructure", dependencies: ["RequestEngine", "LoremSwiftum"]),
.target(name: "Scenarios", dependencies: ["Infrastructure"]),
.target(name: "Validator", dependencies: ["Scenarios", "Rainbow", "Commander"]),
]
)