Push-iOS/Package.swift

29 lines
708 B
Swift
Raw Permalink Normal View History

2022-06-07 13:23:02 +02:00
// swift-tools-version: 5.6
import PackageDescription
let package = Package(
name: "Push-iOS",
2022-06-07 14:03:33 +02:00
platforms: [
.macOS(.v12),
.iOS(.v15),
],
2022-06-07 13:23:02 +02:00
products: [
.library(
2022-06-07 14:03:33 +02:00
name: "Push",
targets: ["Push"]),
2022-06-07 13:23:02 +02:00
],
dependencies: [
2022-06-07 14:14:40 +02:00
.package(url: "https://christophhagen.de/git/ch/Push-API.git", from: "0.5.0"),
2022-06-07 14:03:33 +02:00
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "3.0.0")
2022-06-07 13:23:02 +02:00
],
targets: [
.target(
2022-06-07 14:03:33 +02:00
name: "Push",
dependencies: [
.product(name: "PushAPI", package: "Push-API"),
.product(name: "Crypto", package: "swift-crypto")
]),
2022-06-07 13:23:02 +02:00
]
)