mirror of
https://github.com/EmergeTools/Pow.git
synced 2026-04-04 10:35:46 +00:00
22 lines
518 B
Swift
22 lines
518 B
Swift
// swift-tools-version:5.5
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Pow",
|
|
platforms: [
|
|
.iOS(.v15)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Pow",
|
|
targets: ["Pow"]),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "Pow",
|
|
url: "https://packages.movingparts.io/binaries/pow/0.2.0/Pow.xcframework.zip",
|
|
checksum: "29dfc4ff23d68f1a693aff689b4ab58a81554ad346ab15e7bcc55907c41b090c"
|
|
),
|
|
]
|
|
)
|