From eb19cd5e2f0505b763a87726060e4225a69a848b Mon Sep 17 00:00:00 2001 From: Joakim Hassila Date: Mon, 19 Jun 2023 10:10:48 +0200 Subject: [PATCH] fix(patch): Update dependency on SAP to 1.1 at a minimum as AsyncParsableCommand was only available from that version (#164) --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index a544a5e9..f57d3d79 100644 --- a/Package.swift +++ b/Package.swift @@ -19,7 +19,7 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/apple/swift-system", .upToNextMajor(from: "1.2.0")), - .package(url: "https://github.com/apple/swift-argument-parser", .upToNextMajor(from: "1.0.0")), + .package(url: "https://github.com/apple/swift-argument-parser", .upToNextMajor(from: "1.1.0")), .package(url: "https://github.com/swift-extras/swift-extras-json", .upToNextMajor(from: "0.6.0")), // .package(url: "https://github.com/SwiftPackageIndex/SPIManifest", from: "0.12.0"), .package(url: "https://github.com/ordo-one/TextTable", .upToNextMajor(from: "0.0.1")),