Skip to content

Commit

Permalink
[SwiftPM] Add [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Oct 2, 2018
1 parent b837b8f commit 7e2aace
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version:4.2
import PackageDescription

let package = Package(
name: "APIKit",
products: [
.library(name: "APIKit", targets: ["APIKit"]),
],
dependencies: [
.package(url: "https://github.com/antitypical/Result.git", from: "4.0.0"),
],
targets: [
.target(
name: "APIKit",
dependencies: ["Result"],
exclude: ["BodyParameters/AbstractInputStream.m"]
),
.testTarget(
name: "APIKitTests",
dependencies: ["APIKit"]
),
],
swiftLanguageVersions: [.v4, .v4_2]
)

0 comments on commit 7e2aace

Please sign in to comment.