IceCubesApp/Packages/StatusKit/Package.swift

46 lines
1.3 KiB
Swift
Raw Permalink Normal View History

// swift-tools-version: 5.9
2022-12-18 19:30:19 +00:00
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
2024-01-06 18:27:26 +00:00
name: "StatusKit",
defaultLocalization: "en",
2022-12-18 19:30:19 +00:00
platforms: [
.iOS(.v17),
.visionOS(.v1),
2022-12-18 19:30:19 +00:00
],
products: [
.library(
2024-01-06 18:27:26 +00:00
name: "StatusKit",
targets: ["StatusKit"]
2023-01-17 10:36:01 +00:00
),
2022-12-18 19:30:19 +00:00
],
dependencies: [
2023-01-16 12:52:56 +00:00
.package(name: "AppAccount", path: "../AppAccount"),
2022-12-18 19:30:19 +00:00
.package(name: "Models", path: "../Models"),
2023-10-16 17:08:59 +00:00
.package(name: "MediaUI", path: "../MediaUI"),
2022-12-19 16:19:33 +00:00
.package(name: "Network", path: "../Network"),
2022-12-22 09:53:36 +00:00
.package(name: "Env", path: "../Env"),
2022-12-18 19:30:19 +00:00
.package(name: "DesignSystem", path: "../DesignSystem"),
2023-12-30 08:08:19 +00:00
.package(url: "https://github.com/nicklockwood/LRUCache", from: "1.0.4"),
2022-12-18 19:30:19 +00:00
],
targets: [
.target(
2024-01-06 18:27:26 +00:00
name: "StatusKit",
2022-12-18 19:30:19 +00:00
dependencies: [
2023-01-16 12:52:56 +00:00
.product(name: "AppAccount", package: "AppAccount"),
2022-12-18 19:30:19 +00:00
.product(name: "Models", package: "Models"),
2023-10-16 17:08:59 +00:00
.product(name: "MediaUI", package: "MediaUI"),
2022-12-19 16:19:33 +00:00
.product(name: "Network", package: "Network"),
2022-12-22 09:53:36 +00:00
.product(name: "Env", package: "Env"),
2022-12-18 19:30:19 +00:00
.product(name: "DesignSystem", package: "DesignSystem"),
2023-12-30 08:08:19 +00:00
.product(name: "LRUCache", package: "LRUCache"),
],
swiftSettings: [
2023-09-16 12:15:03 +00:00
.enableExperimentalFeature("StrictConcurrency"),
2023-01-17 10:36:01 +00:00
]
),
2022-12-18 19:30:19 +00:00
]
)