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:
parent
1d0cb1040e
commit
501197f000
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue