IceCubesApp/Packages/Status/Package.swift

36 lines
980 B
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",
targets: ["Status"]),
],
dependencies: [
.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: [
.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"),
2022-12-18 19:30:19 +00:00
]),
]
)