Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Generator/Sources/Internal/Helpers/Async+convenience.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ extension Sequence where Element: Sendable {
// A task group automatically waits for all of its
// sub-tasks to complete, while also performing those
// tasks in parallel:
if #available(macOS 14.0, *) {
if #available(macOS 14.0, iOS 17.0, *) {
await withDiscardingTaskGroup { group in
for element in self {
group.addTask {
Expand Down
6 changes: 3 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ let package = Package(
name: "Cuckoo",
targets: ["Cuckoo"]
),
.executable(
name: "CuckooGenerator",
targets: ["CuckooGenerator"]
),
.plugin(
name: "CuckooPluginSingleFile",
targets: ["CuckooPluginSingleFile"]
Expand Down
Loading