2024-11-08 20:50:21 -08:00
|
|
|
// swift-tools-version:5.10
|
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: [],
|
|
|
|
swiftSettings: [.unsafeFlags(["-warnings-as-errors"])]
|
|
|
|
)
|
|
|
|
]
|
2020-07-30 05:06:10 -05:00
|
|
|
)
|