Skip to content

Commit

Permalink
Merge pull request #2 from SwiftPackageIndex/unpin-swift-parsing
Browse files Browse the repository at this point in the history
Unpin swift-parsing
  • Loading branch information
finestructure authored Dec 8, 2023
2 parents dfc2a1a + cdb7e60 commit 0c0a71c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
14 changes: 7 additions & 7 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
{
"identity" : "swift-case-paths",
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-case-paths",
"location" : "https://github.com/pointfreeco/swift-case-paths.git",
"state" : {
"revision" : "fc45e7b2cfece9dd80b5a45e6469ffe67fe67984",
"version" : "0.14.1"
"branch" : "1.0.0",
"revision" : "5da6989aae464f324eef5c5b52bdb7974725ab81"
}
},
{
"identity" : "swift-parsing",
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-parsing",
"state" : {
"branch" : "0.12.0",
"revision" : "c6e2241daa46e5c6e5027a93b161bca6ba692bcc"
"revision" : "a0e7d73f462c1c38c59dc40a3969ac40cea42950",
"version" : "0.13.0"
}
},
{
"identity" : "xctest-dynamic-overlay",
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
"state" : {
"revision" : "50843cbb8551db836adec2290bb4bc6bac5c1865",
"version" : "0.9.0"
"revision" : "23cbf2294e350076ea4dbd7d5d047c1e76b03631",
"version" : "1.0.2"
}
}
],
Expand Down
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ let package = Package(
targets: ["CanonicalPackageURLs"]),
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-parsing", revision: "0.12.0")
// pin swift-case-paths to pre-macros, avoid pulling in swift-syntax, which causes link errors
.package(url: "https://github.com/pointfreeco/swift-case-paths.git", revision: "1.0.0"),
.package(url: "https://github.com/pointfreeco/swift-parsing.git", from: "0.12.0")
],
targets: [
.target(
Expand Down

0 comments on commit 0c0a71c

Please sign in to comment.