Skip to content

Commit 4308b1b

Browse files
authored
Fix platform requirements (#214)
- Replace the placeholder platform requirements with `@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)` - Bump required dependency versions: `swift-nio`, `swift-log` and `swift-backtrace`
1 parent 77c8af6 commit 4308b1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Package.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ let package = Package(
1515
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
1616
],
1717
dependencies: [
18-
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.28.0")),
19-
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.0.0")),
20-
.package(url: "https://github.com/swift-server/swift-backtrace.git", .upToNextMajor(from: "1.1.0")),
18+
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.30.0")),
19+
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.4.2")),
20+
.package(url: "https://github.com/swift-server/swift-backtrace.git", .upToNextMajor(from: "1.2.3")),
2121
],
2222
targets: [
2323
.target(name: "AWSLambdaRuntime", dependencies: [

0 commit comments

Comments
 (0)