Files
ccn/Packages/Infrastructure/Package.swift
T
javier a868275347 Renamed the Web package as Infrastructure (#24)
Reviewed-on: rock-n-code/loud-amsterdam#24
Co-authored-by: Javier Cicchelli <javier@rock-n-code.com>
Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
2026-07-22 21:26:55 +00:00

48 lines
1.1 KiB
Swift

// swift-tools-version: 6.3
import PackageDescription
let package = Package(
name: "Infrastructure",
platforms: [
.macOS(.v15),
],
products: [
.library(
name: "Infrastructure",
targets: [
"Infrastructure"
]
),
],
dependencies: [
.package(
url: "https://github.com/hummingbird-project/hummingbird.git",
from: "2.25.0"
),
],
targets: [
.target(
name: "Infrastructure",
dependencies: [
.product(
name: "Hummingbird",
package: "hummingbird"
),
],
path: "Sources"
),
.testTarget(
name: "InfrastructureTests",
dependencies: [
.byName(name: "Infrastructure"),
.product(
name: "HummingbirdTesting",
package: "hummingbird"
),
],
path: "Tests"
),
]
)