WeChatTweak-macOS/Package.swift
Sunny Young 4b1bd7c2ab refactor: use async/await instead of promises
support both local and network config
2025-12-07 13:49:14 +08:00

30 lines
634 B
Swift

// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "WeChatTweak",
platforms: [
.macOS(.v12)
],
products: [
.executable(
name: "wechattweak",
targets: [
"WeChatTweak"
]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.6.0")
],
targets: [
.executableTarget(
name: "WeChatTweak",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser")
]
)
]
)