Skip to content

Commit fc5ca5b

Browse files
committed
Update dependencies
1 parent 707fddf commit fc5ca5b

File tree

4 files changed

+101
-18
lines changed

4 files changed

+101
-18
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/
6+
DerivedData

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"object": {
3+
"pins": [
4+
{
5+
"package": "BrightFutures",
6+
"repositoryURL": "https://github.com/Thomvis/BrightFutures.git",
7+
"state": {
8+
"branch": null,
9+
"revision": "fa66fa183dce7196d431244d0215748cd14c5758",
10+
"version": "8.2.0"
11+
}
12+
},
13+
{
14+
"package": "Erik",
15+
"repositoryURL": "https://github.com/phimage/Erik.git",
16+
"state": {
17+
"branch": null,
18+
"revision": "109a130e9cdb00789a43a7a625293eeb12d22989",
19+
"version": "5.1.0"
20+
}
21+
},
22+
{
23+
"package": "FileKit",
24+
"repositoryURL": "https://github.com/nvzqz/FileKit.git",
25+
"state": {
26+
"branch": null,
27+
"revision": "826d9161b184509f80d85c28cd612d630646de98",
28+
"version": "6.0.0"
29+
}
30+
},
31+
{
32+
"package": "Kanna",
33+
"repositoryURL": "https://github.com/tid-kijyun/Kanna.git",
34+
"state": {
35+
"branch": null,
36+
"revision": "f9e4922223dd0d3dfbf02ca70812cf5531fc0593",
37+
"version": "5.2.7"
38+
}
39+
},
40+
{
41+
"package": "OAuthSwift",
42+
"repositoryURL": "https://github.com/OAuthSwift/OAuthSwift",
43+
"state": {
44+
"branch": "master",
45+
"revision": "73f97878d988e33cc0d5482c18db6264c37ffbcd",
46+
"version": null
47+
}
48+
},
49+
{
50+
"package": "RxSwift",
51+
"repositoryURL": "https://github.com/ReactiveX/RxSwift",
52+
"state": {
53+
"branch": null,
54+
"revision": "b4307ba0b6425c0ba4178e138799946c3da594f8",
55+
"version": "6.5.0"
56+
}
57+
},
58+
{
59+
"package": "Swifter",
60+
"repositoryURL": "https://github.com/httpswift/swifter.git",
61+
"state": {
62+
"branch": null,
63+
"revision": "9483a5d459b45c3ffd059f7b55f9638e268632fd",
64+
"version": "1.5.0"
65+
}
66+
}
67+
]
68+
},
69+
"version": 1
70+
}

Package.swift

+18-18
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@
2424
import PackageDescription
2525

2626
let package = Package(
27-
name: "OAuthRxSwift",
28-
products: [
29-
.library(
30-
name: "OAuthRxSwift",
31-
targets: ["OAuthRxSwift"]
32-
),
33-
],
34-
dependencies: [
35-
.package(url: "https://github.com/OAuthSwift/OAuthSwift", .upToNextMajor(from: "2.1.2")),
36-
.package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMajor(from: "6.0.0")),
37-
],
38-
targets: [
39-
.target(
40-
name: "OAuthRxSwift",
41-
dependencies: ["OAuthSwift", "RxSwift"],
42-
path: "Sources"
43-
),
44-
]
27+
name: "OAuthRxSwift",
28+
products: [
29+
.library(
30+
name: "OAuthRxSwift",
31+
targets: ["OAuthRxSwift"]
32+
),
33+
],
34+
dependencies: [
35+
.package(url: "https://github.com/OAuthSwift/OAuthSwift", .branch("master")),
36+
.package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMajor(from: "6.5.0")),
37+
],
38+
targets: [
39+
.target(
40+
name: "OAuthRxSwift",
41+
dependencies: ["OAuthSwift", "RxSwift"],
42+
path: "Sources"
43+
),
44+
]
4545
)

0 commit comments

Comments
 (0)