1 // swift-tools-version:5.3 2 // The swift-tools-version declares the minimum version of Swift required to build this package. 3 4 import PackageDescription 5 6 let package = Package( 7 name: "swift-nio-fuzz", 8 dependencies: [ 9 // Dependencies declare other packages that this package depends on. 10 .package(name: "swift-nio", path: ".."), 11 ], 12 targets: [ 13 // Targets are the basic building blocks of a package. A target can define a module or a test suite. 14 // Targets can depend on other targets in this package, and on products in packages this package depends on. 15 .target( 16 name: "swift-nio-http1-fuzz", 17 dependencies: [.product(name: "NIOHTTP1", package: "swift-nio")]), 18 ] 19 ) 20