Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Package@swift-4.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// swift-tools-version:4.0
import PackageDescription

let package = Package(
name: "RedisProvider",
dependencies: [
// Pure-Swift Redis client implemented from the original protocol spec.
.package(url: "https://github.com/vapor/redis.git", .upToNextMajor(from: "2.0.0")),

// Importing Vapor for access to the Provider protocol.
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "2.0.0")),
]
)