IceCubesApp/Packages/Timeline/Package.swift

50 lines
1.5 KiB
Swift
Raw Permalink Normal View History

// swift-tools-version: 5.9
2022-11-21 08:31:32 +00:00
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Timeline",
defaultLocalization: "en",
2022-11-21 08:31:32 +00:00
platforms: [
.iOS(.v17),
.visionOS(.v1),
2022-11-21 08:31:32 +00:00
],
products: [
.library(
name: "Timeline",
2023-01-17 10:36:01 +00:00
targets: ["Timeline"]
),
2022-11-21 08:31:32 +00:00
],
dependencies: [
.package(name: "Network", path: "../Network"),
2022-11-29 08:28:17 +00:00
.package(name: "Models", path: "../Models"),
2022-12-22 09:53:36 +00:00
.package(name: "Env", path: "../Env"),
2024-01-06 18:27:26 +00:00
.package(name: "StatusKit", path: "../StatusKit"),
2022-12-25 06:43:02 +00:00
.package(name: "DesignSystem", path: "../DesignSystem"),
.package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "1.0.0"),
2023-11-14 18:48:14 +00:00
.package(url: "https://github.com/mergesort/Bodega", exact: "2.1.0"),
2022-11-21 08:31:32 +00:00
],
targets: [
.target(
name: "Timeline",
dependencies: [
2022-11-29 08:28:17 +00:00
.product(name: "Network", package: "Network"),
2022-11-29 10:46:02 +00:00
.product(name: "Models", package: "Models"),
2022-12-22 09:53:36 +00:00
.product(name: "Env", package: "Env"),
2024-01-06 18:27:26 +00:00
.product(name: "StatusKit", package: "StatusKit"),
2023-01-17 10:36:01 +00:00
.product(name: "DesignSystem", package: "DesignSystem"),
.product(name: "SwiftUIIntrospect", package: "SwiftUI-Introspect"),
.product(name: "Bodega", package: "Bodega"),
],
swiftSettings: [
2023-09-16 12:15:03 +00:00
.enableExperimentalFeature("StrictConcurrency"),
2023-01-17 10:36:01 +00:00
]
),
2022-11-21 08:31:32 +00:00
.testTarget(
name: "TimelineTests",
2023-01-17 10:36:01 +00:00
dependencies: ["Timeline"]
),
2022-11-21 08:31:32 +00:00
]
)