-
Notifications
You must be signed in to change notification settings - Fork 8
/
Package.swift
48 lines (44 loc) · 2.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// swift-tools-version: 5.9
import PackageDescription
#if TUIST
import ProjectDescription
import ProjectDescriptionHelpers
let packageSetting = PackageSettings(
productTypes: [:],
baseSettings: .settings(
configurations: [
.debug(name: .debug),
.debug(name: .qa),
.release(name: .release)
]
)
)
#endif
let package = Package(
name: "WaktaverseMusicPackage",
dependencies: [
.package(url: "https://github.com/Moya/Moya.git", from: "15.0.3"),
.package(url: "https://github.com/onevcat/Kingfisher.git", from: "7.11.0"),
.package(url: "https://github.com/gordontucker/FittedSheets.git", from: "2.6.1"),
.package(url: "https://github.com/ReactiveX/RxSwift.git",from: "6.7.1"),
.package(url: "https://github.com/devxoul/Then", from: "3.0.0"),
.package(url: "https://github.com/SnapKit/SnapKit.git", from: "5.7.1"),
.package(url: "https://github.com/ashleymills/Reachability.swift", from: "5.2.1"),
.package(url: "https://github.com/airbnb/lottie-ios.git", from: "4.5.0"),
.package(url: "https://github.com/uber/needle.git", from: "0.24.0"),
.package(url: "https://github.com/uias/Tabman.git", from: "3.2.0"),
.package(url: "https://github.com/RxSwiftCommunity/RxDataSources.git", from: "5.0.2"),
.package(url: "https://github.com/RxSwiftCommunity/RxKeyboard.git", from: "2.0.1"),
.package(url: "https://github.com/huri000/SwiftEntryKit", from: "2.0.0"),
.package(url: "https://github.com/naver/naveridlogin-sdk-ios.git", from: "4.2.3"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.2"),
.package(url: "https://github.com/cbpowell/MarqueeLabel.git", from: "4.5.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", from: "10.25.0"),
.package(url: "https://github.com/ninjaprox/NVActivityIndicatorView.git", from: "5.2.0"),
.package(url: "https://github.com/ReactorKit/ReactorKit.git", from: "3.2.0"),
.package(url: "https://github.com/Quick/Quick.git", from: "7.5.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "13.3.0"),
.package(url: "https://github.com/krzysztofzablocki/Inject.git", from: "1.5.0"),
.package(url: "https://github.com/RxSwiftCommunity/RxGesture.git", from: "4.0.4")
]
)