Skip to content

Commit f23d22b

Browse files
committed
Fix issues caused by async-http-client
1 parent 515be7e commit f23d22b

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

Package.resolved

Lines changed: 2 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ let package = Package(
1212
// Dependencies declare other packages that this package depends on.
1313
.package(url: "https://github.com/apple/swift-argument-parser", from: "0.4.0"),
1414
.package(url: "https://github.com/soto-project/soto.git", from: "5.0.0"),
15+
.package(url: "https://github.com/swift-server/async-http-client.git", .exactItem("1.5.0")), /// This was breaking S3 download, pinned until that's fixed
1516
.package(url: "https://github.com/jkmassel/prlctl.git", from: "1.14.0"),
1617
.package(url: "https://github.com/ebraraktas/swift-tqdm.git", from: "0.1.2"),
1718
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
@@ -25,6 +26,7 @@ let package = Package(
2526
dependencies: [
2627
.product(name: "ArgumentParser", package: "swift-argument-parser"),
2728
.product(name: "SotoS3", package: "soto"),
29+
.product(name: "AsyncHTTPClient", package: "async-http-client"), /// can be removed when we remove the pin above
2830
.product(name: "prlctl", package: "prlctl"),
2931
.product(name: "Tqdm", package: "swift-tqdm"),
3032
.product(name: "Logging", package: "swift-log"),

0 commit comments

Comments
 (0)