Skip to content

Commit

Permalink
beta 1 (#2085)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Oct 24, 2019
1 parent d20a37e commit 3d8bbd5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Expand Up @@ -12,16 +12,16 @@ let package = Package(
],
dependencies: [
// HTTP client library built on SwiftNIO
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.0.0-alpha.1"),
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.0.0"),

// Sugary extensions for the SwiftNIO library
.package(url: "https://github.com/vapor/async-kit.git", .branch("master")),
.package(url: "https://github.com/vapor/async-kit.git", from: "1.0.0-beta"),

// 💻 APIs for creating interactive CLI tools.
.package(url: "https://github.com/vapor/console-kit.git", .branch("master")),
.package(url: "https://github.com/vapor/console-kit.git", from: "4.0.0-beta"),

// Parses and serializes multipart-encoded data with Codable support.
.package(url: "https://github.com/vapor/multipart-kit.git", .branch("master")),
.package(url: "https://github.com/vapor/multipart-kit.git", from: "4.0.0-beta"),

// 🔑 Hashing (BCrypt, SHA2, HMAC), encryption (AES), public-key (RSA), and random data generation.
.package(url: "https://github.com/vapor/open-crypto.git", from: "4.0.0-alpha.2"),
Expand All @@ -45,7 +45,7 @@ let package = Package(
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),

// WebSocket client library built on SwiftNIO
.package(url: "https://github.com/vapor/websocket-kit.git", .branch("master")),
.package(url: "https://github.com/vapor/websocket-kit.git", from: "2.0.0-beta"),
],
targets: [
// C helpers
Expand Down

0 comments on commit 3d8bbd5

Please sign in to comment.