Skip to content

Commit b299131

Browse files
authored
Merge branch 'main' into ff-use-mutex
2 parents 2c5167b + 600e48c commit b299131

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Package.swift

+3-7
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ let package = Package(
2323
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
2424
],
2525
dependencies: [
26-
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.72.0")),
27-
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.5.4")),
28-
.package(url: "https://github.com/apple/swift-testing.git", branch: "swift-DEVELOPMENT-SNAPSHOT-2024-08-29-a"),
26+
.package(url: "https://github.com/apple/swift-nio.git", from: "2.72.0"),
27+
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
2928
],
3029
targets: [
3130
.target(
@@ -70,7 +69,6 @@ let package = Package(
7069
.byName(name: "AWSLambdaRuntimeCore"),
7170
.product(name: "NIOTestUtils", package: "swift-nio"),
7271
.product(name: "NIOFoundationCompat", package: "swift-nio"),
73-
.product(name: "Testing", package: "swift-testing"),
7472
],
7573
swiftSettings: [.swiftLanguageMode(.v5)]
7674
),
@@ -79,7 +77,6 @@ let package = Package(
7977
dependencies: [
8078
.byName(name: "AWSLambdaRuntimeCore"),
8179
.byName(name: "AWSLambdaRuntime"),
82-
.product(name: "Testing", package: "swift-testing"),
8380
],
8481
swiftSettings: [.swiftLanguageMode(.v5)]
8582
),
@@ -95,8 +92,7 @@ let package = Package(
9592
.testTarget(
9693
name: "AWSLambdaTestingTests",
9794
dependencies: [
98-
.byName(name: "AWSLambdaTesting"),
99-
.product(name: "Testing", package: "swift-testing"),
95+
.byName(name: "AWSLambdaTesting")
10096
]
10197
),
10298
// for perf testing

0 commit comments

Comments
 (0)