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