Skip to content

Commit

Permalink
separate swift4 package description
Browse files Browse the repository at this point in the history
  • Loading branch information
Joannis committed Oct 12, 2017
1 parent 00eff57 commit 4f605bf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// swift-tools-version:4.0
import PackageDescription

let package = Package(
name: "MongoDriver",
products: [
.library(name: "MongoDriver", targets: ["MongoDriver"])
],
dependencies: [
.package(url: "https://github.com/vapor/fluent.git", .upToNextMajor(from: "2.4.1")),
.package(url: "https://github.com/OpenKitten/MongoKitten.git", .upToNextMinor(from: "4.0.16"))
],
targets: [
.target(name: "MongoDriver", dependencies: ["Fluent", "MongoKitten"]),
.testTarget(name: "MongoDriverTests", dependencies: ["MongoDriver", "FluentTester"])
]
)

0 comments on commit 4f605bf

Please sign in to comment.