IceCubesApp/Packages/DesignSystem/Package.swift

41 lines
1.1 KiB
Swift
Raw 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(
name: "DesignSystem",
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(
name: "DesignSystem",
2023-01-17 10:36:01 +00:00
targets: ["DesignSystem"]
),
2022-12-18 19:30:19 +00:00
],
2022-12-23 09:46:20 +00:00
dependencies: [
.package(name: "Models", path: "../Models"),
.package(name: "Env", path: "../Env"),
2024-02-13 17:51:00 +00:00
.package(url: "https://github.com/kean/Nuke", from: "12.4.0"),
2024-02-05 07:49:29 +00:00
.package(url: "https://github.com/divadretlaw/EmojiText", from: "4.0.0"),
],
2022-12-18 19:30:19 +00:00
targets: [
.target(
name: "DesignSystem",
2022-12-23 09:46:20 +00:00
dependencies: [
.product(name: "Models", package: "Models"),
.product(name: "Env", package: "Env"),
2022-12-25 12:11:51 +00:00
.product(name: "NukeUI", package: "Nuke"),
.product(name: "Nuke", package: "Nuke"),
2023-01-17 10:36:01 +00:00
.product(name: "EmojiText", package: "EmojiText"),
],
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
]
)