From dfbccf4c07a15c4cff7ceb469ea19c2463434202 Mon Sep 17 00:00:00 2001 From: Nathan Harris Date: Thu, 6 Jun 2019 15:05:37 -0700 Subject: [PATCH] Rename package to match repo Motivation: SE-0226 changes how SPM resolves a dependency graph and as part of the accepted proposal was to require package names to match their repo URL segments. Modifications: Change package from `redis-nio` to `swift-redis-nio-client` Result: The project should compliant with SE-0226: https://github.com/apple/swift-evolution/blob/master/proposals/0226-package-manager-target-based-dep-resolution.md --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 6240309..d8d9201 100644 --- a/Package.swift +++ b/Package.swift @@ -16,7 +16,7 @@ import PackageDescription let package = Package( - name: "redis-nio", + name: "swift-redis-nio-client", products: [ .library(name: "RedisNIO", targets: ["RedisNIO"]) ],