-
-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for Swift 5.10 and strict concurrency #127
Conversation
// Workaround for https://github.com/apple/swift-package-manager/issues/6940 | ||
.product(name: "Vapor", package: "vapor"),{{#fluent}} | ||
.product(name: "Fluent", package: "Fluent"), | ||
.product(name: "Fluent{{fluent.db.module}}Driver", package: "fluent-{{fluent.db.url}}-driver"),{{/fluent}}{{#leaf}} | ||
.product(name: "Leaf", package: "leaf"),{{/leaf}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested this on Ubuntu with swift build --build-tests
and confirmed that the workaround was required with swift 5.9.0 and 5.9.1, but has been fixed and is no longer needed in 5.9.2 and 5.10.0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Updates the template for Swift 5.10
This is an extension of work by @gwynne in #125.