Skip to content

Commit ccbb859

Browse files
committed
fix: replace local paths with GitHub URLs for dependencies
1 parent 7553740 commit ccbb859

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ let package = Package(
2525
),
2626
],
2727
dependencies: [
28-
.package(path: "../swift-rfc-2822"),
29-
.package(path: "../swift-rfc-3987")
28+
.package(url: "https://github.com/swift-standards/swift-rfc-2822.git", from: "0.1.0"),
29+
.package(url: "https://github.com/swift-standards/swift-rfc-3987.git", from: "0.1.0")
3030
],
3131
targets: [
3232
.target(

0 commit comments

Comments
 (0)