Skip to content

Commit

Permalink
Fix warnings in package file
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Mar 18, 2024
1 parent d15bb03 commit 0a06cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package@swift-5.9.swift
Expand Up @@ -3,12 +3,12 @@ import PackageDescription

let package = Package(
name: "APNGKit",
platforms: [.macOS(.v10_11), .iOS(.v9), .tvOS(.v9)],
platforms: [.macOS(.v10_13), .iOS(.v12), .tvOS(.v12)],
products: [
.library(name: "APNGKit", targets: ["APNGKit"])
],
dependencies: [
.package(name: "Delegate", url: "https://github.com/onevcat/Delegate.git", .upToNextMajor(from: "1.1.1"))
.package(url: "https://github.com/onevcat/Delegate.git", from: "1.1.1")
],
targets: [
.target(
Expand Down

0 comments on commit 0a06cc1

Please sign in to comment.