Package.swift 845 B

12345678910111213141516171819202122232425262728
  1. // swift-tools-version:5.3
  2. // The swift-tools-version declares the minimum version of Swift required to build this package.
  3. import PackageDescription
  4. let package = Package(
  5. name: "FuzzTesting",
  6. dependencies: [
  7. .package(name: "SwiftProtobuf", path: ".."),
  8. ],
  9. targets: [
  10. .target(
  11. name: "FuzzCommon",
  12. dependencies: ["SwiftProtobuf"]),
  13. .target(
  14. name: "FuzzBinary",
  15. dependencies: ["SwiftProtobuf", "FuzzCommon"]),
  16. .target(
  17. name: "FuzzBinaryDelimited",
  18. dependencies: ["SwiftProtobuf", "FuzzCommon"]),
  19. .target(
  20. name: "FuzzJSON",
  21. dependencies: ["SwiftProtobuf", "FuzzCommon"]),
  22. .target(
  23. name: "FuzzTextFormat",
  24. dependencies: ["SwiftProtobuf", "FuzzCommon"]),
  25. ]
  26. )