📦 Depend on PromiseKit

This commit is contained in:
Chris Araman 2021-05-03 22:53:25 -07:00
parent 0b8acab235
commit 7952d0f18f
No known key found for this signature in database
GPG key ID: BB4499D9E11B61E0
2 changed files with 11 additions and 1 deletions

View file

@ -37,6 +37,15 @@
"version": "9.1.0"
}
},
{
"package": "PromiseKit",
"repositoryURL": "https://github.com/mxcl/PromiseKit.git",
"state": {
"branch": null,
"revision": "aea48ea1855f5d82e2dffa6027afce3aab8f3dd7",
"version": "6.13.3"
}
},
{
"package": "Quick",
"repositoryURL": "https://github.com/Quick/Quick.git",

View file

@ -24,6 +24,7 @@ let package = Package(
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.18.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "9.1.0"),
.package(url: "https://github.com/Quick/Quick.git", from: "4.0.0"),
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.13.3"),
.package(url: "https://github.com/mxcl/Version.git", from: "2.0.0"),
],
targets: [
@ -41,7 +42,7 @@ let package = Package(
),
.target(
name: "MasKit",
dependencies: ["Commandant", "Version"],
dependencies: ["Commandant", "PromiseKit", "Version"],
swiftSettings: [
.unsafeFlags([
"-I", "Sources/PrivateFrameworks/CommerceKit",