-
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) · 879 Bytes
/
Package.swift
File metadata and controls
24 lines (22 loc) · 879 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:5.1
import PackageDescription
let package = Package(
name: "URLRequestOperation",
products: [
.library(name: "URLRequestOperation", targets: ["URLRequestOperation"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.2.0"),
.package(url: "https://github.com/happn-app/RetryingOperation.git", from: "1.1.2"),
.package(url: "https://github.com/happn-app/SemiSingleton.git", from: "2.0.3")
],
targets: [
.target(name: "URLRequestOperation", dependencies: [
.product(name: "Logging", package: "swift-log"),
.product(name: "RetryingOperation", package: "RetryingOperation"),
.product(name: "SemiSingleton", package: "SemiSingleton")
]),
.target(name: "ManualTest", dependencies: ["URLRequestOperation"]),
.testTarget(name: "URLRequestOperationTests", dependencies: ["URLRequestOperation"])
]
)