// swift-tools-version: 6.1 //===----------------------------------------------------------------------===// // // This source file is part of the SwiftNIO open source project // // Copyright (c) 2025 Apple Inc. and the SwiftNIO project authors // Licensed under Apache License v2.0 // // See LICENSE.txt for license information // See CONTRIBUTORS.txt for the list of SwiftNIO project authors // // SPDX-License-Identifier: Apache-2.0 // //===----------------------------------------------------------------------===// import PackageDescription let package = Package( name: "stackdiff", // Required for Regex support platforms: [.macOS(.v13)], dependencies: [ .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.0") ], targets: [ .executableTarget( name: "stackdiff", dependencies: [ .target(name: "Stacks"), .product( name: "ArgumentParser", package: "swift-argument-parser" ), ] ), .target( name: "Stacks" ), .testTarget( name: "StacksTests", dependencies: [ .target(name: "Stacks") ] ), ] )