|
1 | 1 | // swift-tools-version:5.0
|
2 | 2 | //===----------------------------------------------------------------------===//
|
3 | 3 | //
|
4 |
| -// This source file is part of the RedisNIO open source project |
| 4 | +// This source file is part of the RediStack open source project |
5 | 5 | //
|
6 |
| -// Copyright (c) 2019 RedisNIO project authors |
| 6 | +// Copyright (c) 2019 RediStack project authors |
7 | 7 | // Licensed under Apache License v2.0
|
8 | 8 | //
|
9 | 9 | // See LICENSE.txt for license information
|
10 |
| -// See CONTRIBUTORS.txt for the list of RedisNIO project authors |
| 10 | +// See CONTRIBUTORS.txt for the list of RediStack project authors |
11 | 11 | //
|
12 | 12 | // SPDX-License-Identifier: Apache-2.0
|
13 | 13 | //
|
|
16 | 16 | import PackageDescription
|
17 | 17 |
|
18 | 18 | let package = Package(
|
19 |
| - name: "swift-redis-nio-client", |
| 19 | + name: "redi-stack", |
20 | 20 | products: [
|
21 |
| - .library(name: "RedisNIO", targets: ["RedisNIO"]) |
| 21 | + .library(name: "RediStack", targets: ["RediStack"]) |
22 | 22 | ],
|
23 | 23 | dependencies: [
|
24 | 24 | .package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
|
25 | 25 | .package(url: "https://github.com/apple/swift-metrics.git", from: "1.0.0"),
|
26 | 26 | .package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0")
|
27 | 27 | ],
|
28 | 28 | targets: [
|
29 |
| - .target(name: "RedisNIO", dependencies: ["NIO", "Logging", "Metrics"]), |
30 |
| - .target(name: "RedisNIOTestUtils", dependencies: ["NIO", "RedisNIO"]), |
31 |
| - .testTarget(name: "RedisNIOTests", dependencies: ["RedisNIO", "NIO", "RedisNIOTestUtils"]) |
| 29 | + .target(name: "RediStack", dependencies: ["NIO", "Logging", "Metrics"]), |
| 30 | + .target(name: "RediStackTestUtils", dependencies: ["NIO", "RediStack"]), |
| 31 | + .testTarget(name: "RediStackTests", dependencies: ["RediStack", "NIO", "RediStackTestUtils"]) |
32 | 32 | ]
|
33 | 33 | )
|
0 commit comments