Created
September 20, 2017 02:51
-
-
Save artemnovichkov/7105bab7e59a02dfda0f17749f857265 to your computer and use it in GitHub Desktop.
Template for Swift Package Manager Manifest
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: "Sasha", | |
| dependencies: [ | |
| .package(url: "https://github.com/artemnovichkov/carting.git", from: "1.0.0"), | |
| ], | |
| targets: [ | |
| .target( | |
| name: "Sasha", | |
| dependencies: ["SashaCore"]), | |
| .target( | |
| name: "SashaCore", | |
| dependencies: ["carting"], | |
| path: "./Sources/SashaCore"), | |
| ] | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment