We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 808889c commit 663e99aCopy full SHA for 663e99a
Package.swift
@@ -60,13 +60,13 @@ extension Package.Dependency {
60
enum Source: String {
61
case local, remote, github
62
63
- static var `default`: Self { .local }
+ static var `default`: Self { .github }
64
65
var baseUrl: String {
66
switch self {
67
case .local: return "../"
68
case .remote: return "https://swiftstack.io/"
69
- case .github: return "https://github.com/swift-stack/"
+ case .github: return "https://github.com/swiftstack/"
70
}
71
72
README.md
@@ -5,5 +5,5 @@ XML implementation with streaming parser
5
## Package.swift
6
7
```swift
8
-.package(url: "https://github.com/swift-stack/xml.git", .branch("dev"))
+.package(url: "https://github.com/swiftstack/xml.git", .branch("dev"))
9
```
0 commit comments