-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
26 lines (24 loc) · 940 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swift-jobs-redis",
platforms: [.macOS(.v14), .iOS(.v17), .tvOS(.v17)],
products: [
.library(name: "JobsRedis", targets: ["JobsRedis"]),
],
dependencies: [
.package(url: "https://github.com/hummingbird-project/swift-jobs.git", from: "1.0.0-beta.4"),
.package(url: "https://github.com/swift-server/RediStack.git", from: "1.4.0"),
],
targets: [
.target(name: "JobsRedis", dependencies: [
.product(name: "Jobs", package: "swift-jobs"),
.product(name: "RediStack", package: "RediStack"),
]),
.testTarget(name: "JobsRedisTests", dependencies: [
.byName(name: "JobsRedis"),
.product(name: "Jobs", package: "swift-jobs"),
]),
]
)