diff --git a/Package@swift-4.swift b/Package@swift-4.swift new file mode 100644 index 0000000..29a82bb --- /dev/null +++ b/Package@swift-4.swift @@ -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")), + ] +)