| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // swift-tools-version:5.3
- // The swift-tools-version declares the minimum version of Swift required to build this package.
- // **NOTE**: 5.3 due to https://github.com/swiftlang/swift/issues/75800
- import PackageDescription
- let package = Package(
- name: "FuzzTesting",
- platforms: [
- .macOS(.v10_15)
- ],
- dependencies: [
- .package(name: "SwiftProtobuf", path: "..")
- ],
- targets: [
- .target(
- name: "FuzzCommon",
- dependencies: ["SwiftProtobuf"]
- ),
- .target(
- name: "FuzzBinary",
- dependencies: ["SwiftProtobuf", "FuzzCommon"]
- ),
- .target(
- name: "FuzzBinaryDelimited",
- dependencies: ["SwiftProtobuf", "FuzzCommon"]
- ),
- .target(
- name: "FuzzAsyncMessageSequence",
- dependencies: ["SwiftProtobuf", "FuzzCommon"]
- ),
- .target(
- name: "FuzzJSON",
- dependencies: ["SwiftProtobuf", "FuzzCommon"]
- ),
- .target(
- name: "FuzzTextFormat",
- dependencies: ["SwiftProtobuf", "FuzzCommon"]
- ),
- .testTarget(
- name: "FuzzCommonTests",
- dependencies: ["FuzzCommon"]
- ),
- ]
- )
|