2024-11-09 05:50:21 +01:00
|
|
|
// swift-tools-version:5.10
|
2024-11-07 06:01:17 +01:00
|
|
|
|
2020-07-30 12:06:10 +02:00
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "Secrets",
|
2024-11-07 06:01:17 +01:00
|
|
|
platforms: [.macOS(.v14), .iOS(.v17)],
|
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
|
|
|
]
|
|
|
|
)
|