2024-11-01 06:17:56 +01:00
|
|
|
// swift-tools-version: 5.9
|
2020-07-30 12:06:10 +02:00
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "Secrets",
|
2020-07-30 14:27:14 +02:00
|
|
|
platforms: [.macOS(SupportedPlatform.MacOSVersion.v10_15), .iOS(SupportedPlatform.IOSVersion.v13)],
|
2020-07-30 12:06:10 +02:00
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "Secrets",
|
2020-12-21 17:55:00 +01:00
|
|
|
type: .dynamic,
|
2023-06-26 18:57:22 +02:00
|
|
|
targets: ["Secrets"]
|
|
|
|
)
|
2020-07-30 12:06:10 +02:00
|
|
|
],
|
2023-06-26 18:57:22 +02:00
|
|
|
dependencies: [],
|
2020-07-30 12:06:10 +02:00
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "Secrets",
|
2023-06-26 18:57:22 +02:00
|
|
|
dependencies: []
|
|
|
|
)
|
2020-07-30 12:06:10 +02:00
|
|
|
]
|
|
|
|
)
|