Skip to content

Commit

Permalink
3.0 dep
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Feb 9, 2018
1 parent 2f2bbf2 commit 8964c11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ let package = Package(
],
dependencies: [
// Swift Promises, Futures, and Streams.
.package(url: "https://github.com/vapor/async.git", .branch("beta")),
.package(url: "https://github.com/vapor/async.git", .exact("1.0.0-beta.1")),

// Core extensions, type-aliases, and functions that facilitate common tasks.
.package(url: "https://github.com/vapor/core.git", .branch("beta")),
.package(url: "https://github.com/vapor/core.git", .exact("3.0.0-beta.1")),

// Pure Swift (POSIX) TCP and UDP non-blocking socket layer, with event-driven Server and Client.
.package(url: "https://github.com/vapor/sockets.git", .branch("beta")),
.package(url: "https://github.com/vapor/sockets.git", .exact("3.0.0-beta.1")),
],
targets: [
.target(name: "ServerSecurity", dependencies: ["COperatingSystem", "TCP"]),
Expand All @@ -32,4 +32,4 @@ let package = Package(
package.dependencies.append(.package(url: "https://github.com/vapor/copenssl.git", .exact("1.0.0-alpha.1")))
package.targets.append(.target(name: "OpenSSL", dependencies: ["Async", "COpenSSL", "Debugging", "TLS"]))
package.targets.append(.testTarget(name: "TLSTests", dependencies: ["OpenSSL", "TLS"]))
#endif
#endif

0 comments on commit 8964c11

Please sign in to comment.