Created
October 22, 2017 13:17
-
-
Save sunshinejr/b2cc93b9e9ac9044f15c5f91f24f7e05 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// swift-tools-version:4.0 | |
import PackageDescription | |
let package = Package( | |
name: "Harvey", | |
products: [ | |
.library( | |
name: "Harvey", | |
targets: ["Harvey"]), | |
], | |
dependencies: [ | |
.package(url: "https://github.com/sunshinejr/Quick.git", .branch("fix/spm_swift4")), | |
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "7.0.2")), | |
.package(url: "https://github.com/Moya/Moya.git", .upToNextMajor(from: "10.0.0")) | |
], | |
targets: [ | |
.target( | |
name: "Harvey", | |
dependencies: ["Moya"]), | |
.testTarget( | |
name: "HarveyTests", | |
dependencies: ["Harvey", "Nimble", "Quick"]), | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment