-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (23 loc) · 746 Bytes
/
Package.swift
File metadata and controls
24 lines (23 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "RIBsTreeViewerClient",
platforms: [.iOS(.v15)],
products: [
.library(name: "RIBsTreeViewerClient", targets: ["RIBsTreeViewerClient"]),
],
dependencies: [
.package(url: "https://github.com/uber/RIBs-iOS.git", from: "1.0.0"),
.package(url: "https://github.com/ReactiveX/RxSwift.git", "6.9.0"..<"7.0.0"),
],
targets: [
.target(
name: "RIBsTreeViewerClient",
dependencies: [
.product(name: "RIBs", package: "RIBs-iOS"),
.product(name: "RxSwift", package: "RxSwift"),
],
path: "RIBsTreeViewerClient/Sources"
),
]
)