-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
35 lines (31 loc) · 1.3 KB
/
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
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Rio",
platforms: [.macOS(.v10_12),
.iOS(.v11),
.tvOS(.v10),
.watchOS(.v3)],
products: [
.library(name: "Rio", targets: ["Rio"])
],
dependencies: [
.package(url: "https://github.com/Moya/Moya.git", .upToNextMajor(from: "14.0.0")),
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.9.0")),
.package(name: "KeychainSwift", url: "https://github.com/evgenyneu/keychain-swift.git", .upToNextMajor(from: "22.0.0")),
.package(name: "JWTDecode", url: "https://github.com/auth0/JWTDecode.swift.git", .upToNextMajor(from: "2.6.0")),
.package(
name: "Firebase",
url: "https://github.com/firebase/firebase-ios-sdk.git",
.upToNextMajor(from: "10.22.0")
)
],
targets: [
.target(name: "Rio", dependencies: [
"Moya", "Alamofire", "KeychainSwift", "JWTDecode",
.product(name: "FirebaseAuth", package: "Firebase"),
.product(name: "FirebaseFirestore", package: "Firebase")
], path: "Rio/Classes")
]
)