Skip to content

Commit cd1726b

Browse files
halleebobgodwinx
authored andcommitted
Update Package.swift
1 parent 3505352 commit cd1726b

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

Package.resolved

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"object": {
33
"pins": [
4-
4+
{
5+
"package": "RxSwift",
6+
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",
7+
"state": {
8+
"branch": null,
9+
"revision": "b3e888b4972d9bc76495dd74d30a8c7fad4b9395",
10+
"version": "5.0.1"
11+
}
12+
}
513
]
614
},
715
"version": 1

Package.swift

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// swift-tools-version:4.0
12
//
23
// RxCoreLocation.swift
34
// RxCoreLocation
@@ -10,6 +11,13 @@ import PackageDescription
1011

1112
let package = Package(
1213
name: "RxCoreLocation",
13-
dependencies: [],
14-
exclude: ["Tests"]
14+
products: [
15+
.library(name: "RxCoreLocation", targets: ["RxCoreLocation"])
16+
],
17+
dependencies: [
18+
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0")
19+
],
20+
targets: [
21+
.target(name: "RxCoreLocation", dependencies: ["RxSwift", "RxCocoa"], path: "Sources")
22+
]
1523
)

0 commit comments

Comments
 (0)