-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from terhechte/less-dependencies
- Update to Swift 4.0 and possibly 4.1 - Reduced dependency overhead by using Embassy instead of Vapor - Linux port was started and advanced on quite a bit: --> Compiles after a 4.1 Foundation bugfix. --> Crashes while testing. Seems to be caused by a force unwrapping of a null value.
- Loading branch information
Showing
12 changed files
with
353 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ Carthage/Build | |
.build | ||
dist | ||
SourceKittenDaemon.pkg | ||
Packages | ||
Packages | ||
Package.pins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"autoPin": true, | ||
"pins": [ | ||
{ | ||
"package": "Clang_C", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/norio-nomura/Clang_C.git", | ||
"version": "1.0.2" | ||
}, | ||
{ | ||
"package": "Commandant", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/Carthage/Commandant.git", | ||
"version": "0.12.0" | ||
}, | ||
{ | ||
"package": "Embassy", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/envoy/Embassy.git", | ||
"version": "3.1.0" | ||
}, | ||
{ | ||
"package": "FileSystemWatcher", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/felix91gr/FileSystemWatcher.git", | ||
"version": "1.1.2" | ||
}, | ||
{ | ||
"package": "inotify", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/felix91gr/inotify.git", | ||
"version": "1.0.2" | ||
}, | ||
{ | ||
"package": "Result", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/antitypical/Result.git", | ||
"version": "3.2.2" | ||
}, | ||
{ | ||
"package": "SourceKit", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/norio-nomura/SourceKit.git", | ||
"version": "1.0.1" | ||
}, | ||
{ | ||
"package": "SourceKitten", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/jpsim/SourceKitten.git", | ||
"version": "0.17.5" | ||
}, | ||
{ | ||
"package": "SWXMLHash", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/drmohundro/SWXMLHash.git", | ||
"version": "3.1.0" | ||
}, | ||
{ | ||
"package": "XcodeEdit", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/felix91gr/XcodeEdit.git", | ||
"version": "1.1.2" | ||
}, | ||
{ | ||
"package": "Yams", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/jpsim/Yams.git", | ||
"version": "0.3.2" | ||
} | ||
], | ||
"version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import Foundation | ||
import Xcode | ||
import XcodeEdit | ||
|
||
extension Path { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.