-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
34 lines (32 loc) · 919 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "EmealKit",
platforms: [
.macOS(.v11),
.iOS(.v15),
.watchOS(.v7),
.tvOS(.v14),
],
products: [
.library(
name: "EmealKit",
targets: ["EmealKit"]),
],
dependencies: [
.package(url: "https://github.com/alexaubry/HTMLString.git", from: "5.0.0"),
.package(url: "https://github.com/sharplet/Regex.git", from: "2.1.0"),
.package(url: "https://github.com/nmdias/FeedKit.git", from: "9.1.2"),
],
targets: [
.target(
name: "EmealKit",
dependencies: ["HTMLString", "Regex", "FeedKit"]),
.testTarget(
name: "EmealKitTests",
dependencies: ["EmealKit"]),
.testTarget(
name: "APIValidationTests",
dependencies: ["EmealKit"]),
]
)