34 lines
811 B
Swift
34 lines
811 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "yana",
|
|
platforms: [
|
|
.iOS(.v15),
|
|
.macOS(.v12)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "yana",
|
|
targets: ["yana"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "1.20.2"),
|
|
.package(url: "https://github.com/pointfreeco/swift-case-paths.git", branch: "main")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "yana",
|
|
dependencies: [
|
|
.product(name: "ComposableArchitecture", package: "swift-composable-architecture"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "yanaTests",
|
|
dependencies: ["yana"]
|
|
),
|
|
]
|
|
)
|