-
Notifications
You must be signed in to change notification settings - Fork 33
feat: Add Swift 6 language mode support #920
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 26 commits
a56fb84
8761073
dad0585
dc98b6d
f759bdb
8ed31c2
1d93807
ebf4060
b1491d3
082c5f1
43b13d1
0d41fdc
b672e52
a7afa38
a8da6ea
829882d
7a7e745
67a9feb
98c6599
0e274f5
ea89587
6162f2c
a6a8040
f22919f
bb3bf8d
d876045
2310612
4735c1d
c638616
31dca27
72ed616
f104d7e
958a5e3
df7c767
2cb9702
0fca366
4515eb6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ignore this it will be removed |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// swift-tools-version:5.9 | ||
// swift-tools-version:6.0 | ||
|
||
import Foundation | ||
import PackageDescription | ||
|
@@ -56,7 +56,7 @@ let package = Package( | |
], | ||
dependencies: { | ||
var dependencies: [Package.Dependency] = [ | ||
.package(url: "https://github.com/awslabs/aws-crt-swift.git", exact: "0.48.0"), | ||
.package(url: "https://github.com/awslabs/aws-crt-swift.git", branch: "swift6-support"), | ||
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ignore this |
||
] | ||
let isDocCEnabled = ProcessInfo.processInfo.environment["AWS_SWIFT_SDK_ENABLE_DOCC"] != nil | ||
|
@@ -157,7 +157,10 @@ let package = Package( | |
), | ||
.target( | ||
name: "SmithyHTTPAPI", | ||
dependencies: ["Smithy"] | ||
dependencies: [ | ||
"Smithy", | ||
.product(name: "AwsCommonRuntimeKit", package: "aws-crt-swift") | ||
] | ||
), | ||
.target( | ||
name: "SmithyHTTPClient", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ignore this