Skip to content

Commit

Permalink
Add Swift 5.8 to allow Playgrounds
Browse files Browse the repository at this point in the history
  • Loading branch information
nythepegasus committed Nov 8, 2024
1 parent a68a05c commit 9f574c2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Package@swift-5.8.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version: 5.8

import PackageDescription

let package = Package(
name: "Defaultable",
products: [
.library(
name: "Defaultable",
targets: ["Defaultable"]),
.library(name: "DefaultableFoundation", targets: ["DefaultableFoundation"])
],
targets: [
.target(
name: "Defaultable"),
.target(name: "DefaultableFoundation", dependencies: ["Defaultable"]),
.testTarget(
name: "DefaultableTests",
dependencies: ["Defaultable", "DefaultableFoundation"]
),
]
)

0 comments on commit 9f574c2

Please sign in to comment.