Skip to content
This repository has been archived by the owner on Nov 16, 2020. It is now read-only.

Commit

Permalink
3.0 beta deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Feb 12, 2018
1 parent 2fbde19 commit e18042f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ 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")),

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

// Non-blocking networking for Swift (HTTP and WebSockets).
.package(url: "https://github.com/vapor/engine.git", .branch("beta")),
.package(url: "https://github.com/vapor/engine.git", .exact("3.0.0-beta.1")),

// Swift ORM (queries, models, and relations) for NoSQL and SQL databases.
.package(url: "https://github.com/vapor/fluent.git", .branch("beta")),
.package(url: "https://github.com/vapor/fluent.git", .exact("3.0.0-beta.1")),

// Service container and configuration system.
.package(url: "https://github.com/vapor/service.git", .branch("beta")),
.package(url: "https://github.com/vapor/service.git", .exact("1.0.0-beta.1")),

// A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", .branch("beta")),
.package(url: "https://github.com/vapor/vapor.git", .exact("3.0.0-beta.1")),
],
targets: [
.target(name: "Authentication", dependencies: ["Async", "Bits", "Crypto", "Debugging", "Fluent", "HTTP", "Service", "Vapor"]),
Expand Down

0 comments on commit e18042f

Please sign in to comment.