Skip to content

Commit

Permalink
Merge pull request #124 from SandorDobi/beta
Browse files Browse the repository at this point in the history
Fixing dependecies
  • Loading branch information
Joannis committed Feb 17, 2018
2 parents abaa94e + 850dc2a commit 06257bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Package.swift
Expand Up @@ -8,19 +8,19 @@ let package = Package(
],
dependencies: [
// Swift Promises, Futures, and Streams.
.package(url: "https://github.com/vapor/async.git", .exact("1.0.0-beta.1")),
.package(url: "https://github.com/vapor/async.git", "1.0.0-beta.1"..<"1.0.0-beta.2"),

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

// Cryptography modules
.package(url: "https://github.com/vapor/crypto.git", .exact("3.0.0-beta.1")),
.package(url: "https://github.com/vapor/crypto.git", "3.0.0-beta.1"..<"3.0.0-beta.2"),

// Networking
.package(url: "https://github.com/vapor/sockets.git", .exact("3.0.0-beta.2")),
.package(url: "https://github.com/vapor/sockets.git", "3.0.0-beta.2"..<"3.0.0-beta.3"),

// SSL support
.package(url: "https://github.com/vapor/tls.git", .exact("3.0.0-beta.2")),
.package(url: "https://github.com/vapor/tls.git", "3.0.0-beta.2"..<"3.0.0-beta.3"),
],
targets: [
.target(name: "MySQL", dependencies: ["CodableKit", "Crypto", "TCP", "TLS"]),
Expand Down

0 comments on commit 06257bc

Please sign in to comment.