26 lines
566 B
Swift
26 lines
566 B
Swift
// swift-tools-version: 6.0
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-nio-echo",
|
|
platforms: [
|
|
.macOS(.v15)
|
|
],
|
|
products: [
|
|
.executable(name: "nio-echo", targets: ["NIOEcho"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-nio.git", from: "2.76.1")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "NIOEcho",
|
|
dependencies: [
|
|
.product(name: "NIO", package: "swift-nio")
|
|
]
|
|
)
|
|
]
|
|
)
|