Skip to content

Commit

Permalink
Add Package@swift-5.7 back
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHearst committed Feb 26, 2024
1 parent ef672c4 commit e80bd96
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Package@swift-5.7.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "ScryfallKit",
platforms: [.macOS(.v10_13), .iOS(.v12)],
products: [
.library(
name: "ScryfallKit",
targets: ["ScryfallKit"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
],
targets: [
.target(
name: "ScryfallKit"
),
.testTarget(
name: "ScryfallKitTests",
dependencies: ["ScryfallKit"])
]
)

0 comments on commit e80bd96

Please sign in to comment.