Skip to content

Commit eb90d37

Browse files
committed
deps: Update swift-syntax (#42)
1 parent f5d7ee4 commit eb90d37

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Package.resolved

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

Package.swift

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ let package = Package(
1212
.library(
1313
name: "CodableWrapper",
1414
targets: ["CodableWrapper"]
15-
),
15+
)
1616
],
1717
dependencies: [
1818
// Depend on the latest Swift 5.9 SwiftSyntax
19-
.package(url: "https://github.com/apple/swift-syntax", from: "509.0.0"),
19+
.package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"601.0.0-prerelease")
2020
],
2121
targets: [
2222
// Targets are the basic building blocks of a package, defining a module or a test suite.
@@ -35,8 +35,9 @@ let package = Package(
3535
),
3636

3737
// Library that exposes a macro as part of its API, which is used in client programs.
38-
.target(name: "CodableWrapper",
39-
dependencies: ["CodableWrapperMacros"]),
38+
.target(
39+
name: "CodableWrapper",
40+
dependencies: ["CodableWrapperMacros"]),
4041

4142
// A test target used to develop the macro implementation.
4243
.testTarget(

0 commit comments

Comments
 (0)