Skip to content

Commit 8603746

Browse files
committed
Fix swiftlang dependencies
1 parent b3ac77b commit 8603746

File tree

3 files changed

+8
-15
lines changed

3 files changed

+8
-15
lines changed

Generator/Project.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ let project = Project(
4444
// Any dependency changes must also be reflected in ../Package.swift.
4545
.package(url: "https://github.com/nvzqz/FileKit.git", .exact("6.1.0")),
4646
.package(url: "https://github.com/kylef/Stencil.git", .exact("0.15.1")),
47-
.package(url: "https://github.com/apple/swift-syntax.git", .exact("509.0.0")),
48-
.package(url: "https://github.com/apple/swift-format.git", .exact("509.0.0")),
47+
.package(url: "https://github.com/swiftlang/swift-syntax", .exact("509.0.0")),
48+
.package(url: "https://github.com/swiftlang/swift-format", .exact("509.0.0")),
4949
.package(url: "https://github.com/apple/swift-argument-parser", .exact("1.2.3")),
5050
.package(url: "https://github.com/LebJe/TOMLKit.git", .exact("0.5.5")),
5151
.package(url: "https://github.com/tuist/XcodeProj.git", .exact("8.15.0")),

Package.resolved

Lines changed: 4 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ let package = Package(
2929
// Any dependency changes must also be reflected in Generator/Project.swift.
3030
.package(url: "https://github.com/nvzqz/FileKit.git", exact: "6.1.0"),
3131
.package(url: "https://github.com/kylef/Stencil.git", exact: "0.15.1"),
32-
.package(url: "https://github.com/apple/swift-syntax.git", exact: "509.0.0"),
33-
.package(url: "https://github.com/apple/swift-format.git", exact: "509.0.0"),
32+
.package(url: "https://github.com/swiftlang/swift-syntax", exact: "509.0.0"),
33+
.package(url: "https://github.com/swiftlang/swift-format", exact: "509.0.0"),
3434
.package(url: "https://github.com/apple/swift-argument-parser", exact: "1.2.3"),
3535
.package(url: "https://github.com/LebJe/TOMLKit.git", exact: "0.5.5"),
3636
.package(url: "https://github.com/tuist/XcodeProj.git", exact: "8.15.0"),

0 commit comments

Comments
 (0)