Skip to content

Commit

Permalink
Merge branch 'main' into ff-use-mutex
Browse files Browse the repository at this point in the history
  • Loading branch information
sebsto authored Oct 8, 2024
2 parents 2c5167b + 600e48c commit b299131
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ let package = Package(
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.72.0")),
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.5.4")),
.package(url: "https://github.com/apple/swift-testing.git", branch: "swift-DEVELOPMENT-SNAPSHOT-2024-08-29-a"),
.package(url: "https://github.com/apple/swift-nio.git", from: "2.72.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
],
targets: [
.target(
Expand Down Expand Up @@ -70,7 +69,6 @@ let package = Package(
.byName(name: "AWSLambdaRuntimeCore"),
.product(name: "NIOTestUtils", package: "swift-nio"),
.product(name: "NIOFoundationCompat", package: "swift-nio"),
.product(name: "Testing", package: "swift-testing"),
],
swiftSettings: [.swiftLanguageMode(.v5)]
),
Expand All @@ -79,7 +77,6 @@ let package = Package(
dependencies: [
.byName(name: "AWSLambdaRuntimeCore"),
.byName(name: "AWSLambdaRuntime"),
.product(name: "Testing", package: "swift-testing"),
],
swiftSettings: [.swiftLanguageMode(.v5)]
),
Expand All @@ -95,8 +92,7 @@ let package = Package(
.testTarget(
name: "AWSLambdaTestingTests",
dependencies: [
.byName(name: "AWSLambdaTesting"),
.product(name: "Testing", package: "swift-testing"),
.byName(name: "AWSLambdaTesting")
]
),
// for perf testing
Expand Down

0 comments on commit b299131

Please sign in to comment.