Drop gsoc prefix in module name

This commit is contained in:
Moritz Lang 2020-07-22 16:09:21 +02:00
parent 407c998e71
commit a7c56001b9
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
import PackageDescription
let package = Package(
name: "gsoc-swift-baggage-context",
name: "swift-baggage-context",
products: [
.library(name: "Baggage", targets: ["Baggage"])
],

View File

@ -14,7 +14,7 @@ You can install the `BaggageContext` library through the Swift Package Manager.
```swift
dependencies: [
.package(url: "https://github.com/slashmo/gsoc-swift-baggage-context.git", from: "0.1.0")
.package(url: "https://github.com/slashmo/swift-baggage-context.git", from: "0.1.0")
]
```