Skip to content

Commit

Permalink
Merge pull request #3 from Ryu0118/deprecate-swift-5.8
Browse files Browse the repository at this point in the history
Deprecate Swift 5.8
  • Loading branch information
Ryu0118 authored Jun 26, 2024
2 parents 5be3764 + aeebbe9 commit 5428ff6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 51 deletions.
25 changes: 25 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,47 @@ import PackageDescription

let package = Package(
name: "CoWBox",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6),
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "CoWBox",
targets: ["CoWBox"]
),
.library(
name: "ObservedCoWBox",
targets: [
"ObservedCoWBox"
]
)
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-perception", from: "1.1.7"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "CoWBox"
),
.target(
name: "ObservedCoWBox",
dependencies: [
.product(name: "Perception", package: "swift-perception")
]
),
.testTarget(
name: "CoWBoxTests",
dependencies: ["CoWBox"]
),
.testTarget(
name: "ObservedCoWBoxTests",
dependencies: ["ObservedCoWBox"]
),
]
)
51 changes: 0 additions & 51 deletions Package@swift-5.9.swift

This file was deleted.

0 comments on commit 5428ff6

Please sign in to comment.