Package.swift 630 B

12345678910111213141516171819
  1. // swift-tools-version: 5.10
  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: "KituraApi",
  6. dependencies: [
  7. .package(url: "https://github.com/Kitura/Kitura", from: "2.8.0"),
  8. ],
  9. targets: [
  10. // Targets are the basic building blocks of a package, defining a module or a test suite.
  11. // Targets can depend on other targets in this package and products from dependencies.
  12. .executableTarget(
  13. name: "KituraApi",
  14. dependencies: ["Kitura"]
  15. ),
  16. ]
  17. )