-
-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Introduced a versioned Package.swift as per [specification](https://github.com/apple/swift-package-manager/blob/main/Documentation/Usage.md\#version-specific-manifest-selection) - Added `.visionOS` as a supported platform - Updated handling of the background mode of AVPlayer for visionOS - Disabled `ImageDecoders.Video` as `AVAssetImageGenerator.copyCGImage` is not available for visionOS
- Loading branch information
1 parent
1694798
commit 0cb9a53
Showing
4 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swift-tools-version:5.7 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Nuke", | ||
platforms: [ | ||
.iOS(.v13), | ||
.tvOS(.v13), | ||
.macOS(.v10_15), | ||
.watchOS(.v6) | ||
], | ||
products: [ | ||
.library(name: "Nuke", targets: ["Nuke"]), | ||
.library(name: "NukeUI", targets: ["NukeUI"]), | ||
.library(name: "NukeVideo", targets: ["NukeVideo"]), | ||
.library(name: "NukeExtensions", targets: ["NukeExtensions"]) | ||
], | ||
targets: [ | ||
.target(name: "Nuke"), | ||
.target(name: "NukeUI", dependencies: ["Nuke"]), | ||
.target(name: "NukeVideo", dependencies: ["Nuke"]), | ||
.target(name: "NukeExtensions", dependencies: ["Nuke"]) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters