-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
32 lines (30 loc) · 1.22 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Nocturnal",
platforms: [
.iOS(.v10)
],
products: [
.library(name: "NocturnalCore", targets: ["NocturnalCore"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
.package(name: "RxGesture", url: "https://github.com/RxSwiftCommunity/RxGesture.git", .upToNextMajor(from: "3.0.0")),
.package(name: "Sundial", url: "https://github.com/netcosports/Sundial.git", .upToNextMajor(from: "5.1.23")),
.package(name: "Astrolabe", url: "https://github.com/netcosports/Astrolabe.git", .upToNextMajor(from: "5.0.0")),
.package(name: "Alidade", url: "https://github.com/netcosports/Alidade.git", .upToNextMajor(from: "5.1.9"))
],
targets: [
.target(name: "NocturnalCore",
dependencies: ["RxSwift",
.product(name: "RxCocoa", package: "RxSwift"),
"RxGesture",
"Sundial",
"Astrolabe",
.product(name: "AlidadeAssociatable", package: "Alidade"),
.product(name: "AlidadeUI", package: "Alidade")],
path: "./Sources/Core"),
],
swiftLanguageVersions: [.v5]
)