File tree Expand file tree Collapse file tree 3 files changed +56
-1
lines changed Expand file tree Collapse file tree 3 files changed +56
-1
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " FlyingFox" ,
3
+ "version" : " 0.24.1" ,
4
+ "summary" : " Lightweight, HTTP server written in Swift using async/await" ,
5
+ "homepage" : " https://github.com/swhitty/FlyingFox" ,
6
+ "authors" : " Simon Whitty" ,
7
+ "license" : {
8
+ "type" : " MIT" ,
9
+ "file" : " LICENSE"
10
+ },
11
+ "source" : {
12
+ "git" : " https://github.com/swhitty/FlyingFox.git" ,
13
+ "tag" : " 0.24.1"
14
+ },
15
+ "platforms" : {
16
+ "ios" : " 13.0" ,
17
+ "osx" : " 10.15" ,
18
+ "tvos" : " 13.0" ,
19
+ "watchos" : " 7.0"
20
+ },
21
+ "source_files" : " FlyingFox/Sources/**/*.swift" ,
22
+ "dependencies" : {
23
+ "FlyingSocks" : " ~> 0.24.1"
24
+ },
25
+ "pod_target_xcconfig" : {
26
+ "OTHER_SWIFT_FLAGS" : " -package-name FlyingFox"
27
+ },
28
+ "swift_version" : " 5.10"
29
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " FlyingSocks" ,
3
+ "version" : " 0.24.1" ,
4
+ "summary" : " Lightweight, async sockets written in Swift using async/await" ,
5
+ "homepage" : " https://github.com/swhitty/FlyingFox" ,
6
+ "authors" : " Simon Whitty" ,
7
+ "license" : {
8
+ "type" : " MIT" ,
9
+ "file" : " LICENSE"
10
+ },
11
+ "source" : {
12
+ "git" : " https://github.com/swhitty/FlyingFox.git" ,
13
+ "tag" : " 0.24.1"
14
+ },
15
+ "platforms" : {
16
+ "ios" : " 13.0" ,
17
+ "osx" : " 10.15" ,
18
+ "tvos" : " 13.0" ,
19
+ "watchos" : " 7.0"
20
+ },
21
+ "source_files" : " FlyingSocks/Sources/**/*.swift" ,
22
+ "pod_target_xcconfig" : {
23
+ "OTHER_SWIFT_FLAGS" : " -package-name FlyingFox"
24
+ },
25
+ "swift_version" : " 5.10"
26
+ }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ FlyingFox can be installed by using Swift Package Manager.
32
32
To install using Swift Package Manager, add this to the ` dependencies: ` section in your Package.swift file:
33
33
34
34
``` swift
35
- .package (url : " https://github.com/swhitty/FlyingFox.git" , .upToNextMajor (from : " 0.24.0 " ))
35
+ .package (url : " https://github.com/swhitty/FlyingFox.git" , .upToNextMajor (from : " 0.24.1 " ))
36
36
```
37
37
38
38
# Usage
You can’t perform that action at this time.
0 commit comments