-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
35 lines (29 loc) · 1.12 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
// swift-tools-version:5.10
import PackageDescription
#if TUIST
import ProjectDescription
let packageSettings = PackageSettings(
productTypes: [
"SnapKit": .framework,
"Kingfisher": .framework,
"RxSwift": .framework,
"RxGesture": .framework,
"SwiftyToaster": .framework,
"MarkdownView": .framework,
"SkeletonView": .framework
]
)
#endif
let package = Package(
name: "Gitodo",
dependencies: [
.package(url: "https://github.com/SnapKit/SnapKit", from: "5.0.1"),
.package(url: "https://github.com/onevcat/Kingfisher.git", from: "7.0.0"),
.package(url: "https://github.com/ReactiveX/RxSwift.git",from: "6.0.0"),
.package(url: "https://github.com/RxSwiftCommunity/RxGesture", from: "4.0.0"),
.package(url: "https://github.com/realm/realm-swift", exact: "10.49.2"),
.package(url: "https://github.com/noeyiz/SwiftyToaster.git", from: "1.0.2"),
.package(url: "https://github.com/keitaoouchi/MarkdownView.git", from: "1.7.1"),
.package(url: "https://github.com/Juanpe/SkeletonView.git", from: "1.7.0")
]
)