2025-01-06 21:02:03 -08:00
|
|
|
// swift-tools-version:6.0
|
2024-11-06 21:01:17 -08:00
|
|
|
|
2020-07-30 05:06:10 -05:00
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
2024-11-09 09:44:22 -08:00
|
|
|
name: "Secrets",
|
2024-11-06 21:01:17 -08:00
|
|
|
platforms: [.macOS(.v14), .iOS(.v17)],
|
2024-11-09 09:44:22 -08:00
|
|
|
products: [
|
|
|
|
.library(
|
|
|
|
name: "Secrets",
|
2020-12-21 10:55:00 -06:00
|
|
|
type: .dynamic,
|
2024-11-09 09:44:22 -08:00
|
|
|
targets: ["Secrets"]
|
|
|
|
)
|
|
|
|
],
|
|
|
|
dependencies: [],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "Secrets",
|
|
|
|
dependencies: [],
|
2025-01-06 21:02:03 -08:00
|
|
|
exclude: ["SecretKey.swift.gyb"]
|
2024-11-09 09:44:22 -08:00
|
|
|
)
|
|
|
|
]
|
2020-07-30 05:06:10 -05:00
|
|
|
)
|