20 lines
512 B
Swift
20 lines
512 B
Swift
// swift-tools-version:4.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-nio-redis",
|
|
products: [
|
|
.library(name: "NIORedis", targets: [ "NIORedis" ]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-nio.git",
|
|
from: "1.13.2"),
|
|
],
|
|
targets: [
|
|
.target(name: "NIORedis",
|
|
dependencies: [ "NIO", "NIOFoundationCompat" ]),
|
|
.testTarget(name: "NIORedisTests", dependencies: [ "NIORedis"])
|
|
]
|
|
)
|