Skip to content

Commit 934bebe

Browse files
committed
Convert path-form deps to URL-form (resolve URL→global mirror)
All .package(path: "../…") sibling deps → .package(url: "https://github.com/<org>/<repo>.git", branch: "main"). Per [RELEASE-015]; package identity preserved via the global mirror (local-dir basename), so consumer .product(package:) refs are unchanged. Local builds unaffected.
1 parent 684ed9d commit 934bebe

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ let package = Package(
1414
.library(name: "Sockets Standard", targets: ["Sockets Standard"])
1515
],
1616
dependencies: [
17-
.package(path: "../../swift-ietf/swift-rfc-768"),
18-
.package(path: "../../swift-ietf/swift-rfc-791"),
19-
.package(path: "../../swift-ietf/swift-rfc-9293")
17+
.package(url: "https://github.com/swift-ietf/swift-rfc-768.git", branch: "main"),
18+
.package(url: "https://github.com/swift-ietf/swift-rfc-791.git", branch: "main"),
19+
.package(url: "https://github.com/swift-ietf/swift-rfc-9293.git", branch: "main")
2020
],
2121
targets: [
2222
.target(

0 commit comments

Comments
 (0)