forked from konkab/AlamofireNetworkActivityLogger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (28 loc) · 743 Bytes
/
Package.swift
File metadata and controls
29 lines (28 loc) · 743 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
25
26
27
28
29
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "AlamofireNetworkActivityLogger",
platforms: [
.iOS(.v10),
.macOS(.v10_12),
.tvOS(.v10),
.watchOS(.v3)
],
products: [
.library(
name: "AlamofireNetworkActivityLogger",
targets: ["AlamofireNetworkActivityLogger"]),
],
dependencies: [
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.0.0-rc.3")),
],
targets: [
.target(
name: "AlamofireNetworkActivityLogger",
dependencies: [
"Alamofire",
],
path: "Source"),
],
swiftLanguageVersions: [.v5]
)