Fixing unpredictable PA failure issue.
This commit is contained in:
parent
0349fd1d62
commit
1f1f94c78c
|
@ -22,7 +22,7 @@ import PackageDescription
|
||||||
let package = Package(name: "PerfectMustache",
|
let package = Package(name: "PerfectMustache",
|
||||||
products: [.library(name: "PerfectMustache",targets: ["PerfectMustache"]),],
|
products: [.library(name: "PerfectMustache",targets: ["PerfectMustache"]),],
|
||||||
dependencies: [
|
dependencies: [
|
||||||
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTP.git", .branch("master")),
|
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTP.git", from: "3.0.0"),
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
.target(
|
.target(
|
||||||
|
|
|
@ -48,7 +48,7 @@ This package is designed to work along with [Perfect](https://github.com/Perfect
|
||||||
To start, add this project as a dependency in your Package.swift file.
|
To start, add this project as a dependency in your Package.swift file.
|
||||||
|
|
||||||
```swift
|
```swift
|
||||||
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", .branch("master"))
|
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", from: "3.0.0")
|
||||||
```
|
```
|
||||||
|
|
||||||
Basic usage:
|
Basic usage:
|
||||||
|
|
Loading…
Reference in New Issue