Correctly avoid branch dependency. (#31)

Motivation:

When entering convergence we incorrectly specified a branch dependency
for something that is actually a tag.

Modifications:

- Remove branch dependency, use from: instead.

Result:

Users can use this repo!
This commit is contained in:
Cory Benfield 2019-03-25 11:44:58 +02:00 committed by Johannes Weiss
parent 1d0cb1040e
commit 501197f000
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ let package = Package(
.executable(name: "NIOTSHTTPServer", targets: ["NIOTSHTTPServer"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", .branch("2.0.0-convergence.1")),
.package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0-convergence.1"),
],
targets: [
.target(name: "NIOTransportServices",