-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
30 lines (29 loc) · 932 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
// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "InternetArchiveKit",
platforms: [
.iOS(.v13),
.macOS(.v10_13)
],
products: [
.library(name: "InternetArchiveKit", targets: ["InternetArchiveKit"])
],
dependencies: [
.package(url: "https://github.com/michaeleisel/ZippyJSON", .upToNextMajor(from: "1.2.4")),
.package(url: "https://github.com/michaeleisel/JJLISO8601DateFormatter", .upToNextMajor(from: "0.1.8")),
.package(url: "https://github.com/azsn/URLSessionMock", .upToNextMajor(from: "0.1.0")),
],
targets: [
.target(
name: "InternetArchiveKit",
dependencies: ["JJLISO8601DateFormatter", "ZippyJSON"],
path: "InternetArchiveKit"
),
.testTarget(
name: "InternetArchiveKitTests",
dependencies: ["InternetArchiveKit", "JJLISO8601DateFormatter", "URLSessionMock"],
path: "InternetArchiveKitTests"
)
]
)