Skip to content

Commit 9677b60

Browse files
Stijn Willemsclaude
authored andcommitted
refactor: Use GitHub forks for Swift 6.3 compatibility
Update all local path dependencies to use GitHub forks: - doozMen/GRDB.swift (master) - synced with upstream v7.9.0 - doozMen/swift-sharing (main) - Swift 6.3 fixes for swift-perception - doozMen/swift-structured-queries (main) - Swift 6.3 compiler crash guards All CloudKit code guarded with `!compiler(>=6.3)` to avoid compiler crashes. Tested successfully with Swift 6.3-dev snapshot. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d015f31 commit 9677b60

2 files changed

Lines changed: 44 additions & 5 deletions

File tree

Package.resolved

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

Package.swift

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,18 @@ let package = Package(
2525
],
2626
dependencies: [
2727
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
28-
.package(name: "GRDB.swift", path: "../GRDB-swift"),
28+
// NB: Fork synced with upstream v7.9.0
29+
.package(url: "https://github.com/doozMen/GRDB.swift", branch: "master"),
2930
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0"),
3031
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.3.3"),
3132
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.9.0"),
32-
// NB: Local fork with Swift 6.3 fixes for swift-perception (transitive dependency)
33-
.package(name: "swift-sharing", path: "../swift-sharing"),
33+
// NB: Fork with Swift 6.3 fixes (uses doozMen/swift-perception)
34+
.package(url: "https://github.com/doozMen/swift-sharing", branch: "main"),
3435
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing", from: "1.18.4"),
36+
// NB: Fork with Swift 6.3 fixes
3537
.package(
36-
path: "../swift-structured-queries",
38+
url: "https://github.com/doozMen/swift-structured-queries",
39+
branch: "main",
3740
traits: [
3841
.trait(
3942
name: "StructuredQueriesTagged",

0 commit comments

Comments
 (0)