-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDependencies.swift
24 lines (21 loc) · 1.04 KB
/
Dependencies.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
//
// Dependencies.swift
// Config
//
// Created by 김세영 on 2022/11/10.
//
import ProjectDescription
let spm = SwiftPackageManagerDependencies([
.remote(url: "https://github.com/ReactiveX/RxSwift", requirement: .upToNextMajor(from: "6.5.0")),
.remote(url: "https://github.com/RxSwiftCommunity/RxGesture", requirement: .upToNextMinor(from: "4.0.0")),
.remote(url: "https://github.com/firebase/firebase-ios-sdk", requirement: .upToNextMajor(from: "8.10.0")),
.remote(url: "https://github.com/airbnb/lottie-ios", requirement: .branch("master")),
.remote(url: "https://github.com/SnapKit/SnapKit", requirement: .upToNextMajor(from: "5.0.0")),
.remote(url: "https://github.com/airbnb/HorizonCalendar.git", requirement: .branch("master")),
.remote(url: "https://github.com/onevcat/Kingfisher", requirement: .upToNextMajor(from: "7.0")),
.remote(url: "https://github.com/Juanpe/SkeletonView", requirement: .upToNextMajor(from: "1.7.0"))
])
let dependencies = Dependencies(
swiftPackageManager: spm,
platforms: [.iOS]
)