-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (22 loc) · 821 Bytes
/
Package.swift
File metadata and controls
24 lines (22 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version:6.0
// DepthKit © 2017–2025 Constantino Tsarouhas
import PackageDescription
let package = Package(
name: "DepthKit",
platforms: [.macOS(.v15), .iOS(.v18), .tvOS(.v18), .watchOS(.v11), .visionOS(.v2)],
products: [
.library(name: "DepthKit", targets: ["DepthKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-algorithms.git", .upToNextMinor(from: "1.2.0")),
.package(url: "https://github.com/apple/swift-async-algorithms.git", .upToNextMajor(from: "1.0.3")),
],
targets: [
.target(name: "DepthKit", dependencies: [
.product(name: "Algorithms", package: "swift-algorithms"),
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
]),
.testTarget(name: "DepthKitTests", dependencies: ["DepthKit"]),
],
swiftLanguageModes: [.v6]
)