Files
ccn/Packages/Web/Package.swift
T

48 lines
1017 B
Swift
Raw Normal View History

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