IceCubesApp/Packages/Status/Package.swift

39 lines
1.1 KiB
Swift
Raw Normal View History

2022-12-18 19:30:19 +00:00
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Status",
platforms: [
.iOS(.v16),
],
products: [
.library(
name: "Status",
2023-01-17 10:36:01 +00:00
targets: ["Status"]
),
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"),
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"),
2022-12-26 07:24:55 +00:00
.package(url: "https://github.com/Dimillian/TextView", branch: "main"),
2022-12-18 19:30:19 +00:00
],
targets: [
.target(
name: "Status",
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"),
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"),
2022-12-26 07:24:55 +00:00
.product(name: "TextView", package: "TextView"),
2023-01-17 10:36:01 +00:00
]
),
2022-12-18 19:30:19 +00:00
]
)