-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
26 lines (25 loc) · 974 Bytes
/
Package.swift
File metadata and controls
26 lines (25 loc) · 974 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
25
26
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "mpd-virt",
// macOS-only orchestrator. The binary drives Parallels Desktop Pro on the
// user's Mac to create + manage mpd VMs.
platforms: [.macOS(.v14)],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.7.0"),
// swift-crypto powers Curve25519 keypair generation for WireGuard
// static keys. On Apple platforms it re-exports CryptoKit at zero cost.
.package(url: "https://github.com/apple/swift-crypto", from: "3.0.0"),
],
targets: [
.executableTarget(
name: "mpd-virt",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Crypto", package: "swift-crypto"),
],
path: "mpd-virt",
swiftSettings: [.swiftLanguageMode(.v5)]
),
]
)