Skip to content

Commit

Permalink
Remove dependency on _NIOConcurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianfett committed Sep 23, 2021
1 parent 5a21193 commit 92e466d
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.32.0")),
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.33.0")),
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.4.2")),
.package(url: "https://github.com/swift-server/swift-backtrace.git", .upToNextMajor(from: "1.2.3")),
],
Expand Down
1 change: 0 additions & 1 deletion Sources/AWSLambdaRuntimeCore/Lambda.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import Glibc
import Darwin.C
#endif

import _NIOConcurrency
import Backtrace
import Logging
import NIOCore
Expand Down
1 change: 0 additions & 1 deletion Sources/AWSLambdaRuntimeCore/LambdaHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
//
//===----------------------------------------------------------------------===//

import _NIOConcurrency
import Dispatch
import NIOCore

Expand Down
1 change: 0 additions & 1 deletion Sources/AWSLambdaTesting/Lambda+Testing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
// }

#if swift(>=5.5)
import _NIOConcurrency
import AWSLambdaRuntime
import AWSLambdaRuntimeCore
import Dispatch
Expand Down

0 comments on commit 92e466d

Please sign in to comment.