// 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" ), ] )