mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-10 11:19:30 +00:00
4189a59cf6
* Initial iOS 17 + Observable migration * More Observation * More observation * Checkpoint * Checkpoint * Bump version to 1.8.0 * SwiftFormat * Fix home timeline switch on login * Fix sidebar routerPath * Fixes on detail view * Remove print changes * Simply detail view * More opt * Migrate DisplaySettingsLocalValues * Better post detail transition * Status detail animation finally right * Cleanup
36 lines
730 B
Swift
36 lines
730 B
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Models",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Models",
|
|
targets: ["Models"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.4.3"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Models",
|
|
dependencies: [
|
|
"SwiftSoup",
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "ModelsTests",
|
|
dependencies: ["Models"]
|
|
),
|
|
]
|
|
)
|