-
-
Notifications
You must be signed in to change notification settings - Fork 12
Punycode 4.0.0: manifest modernization, Linux support, decode hardening, URL-aware IDNA API #81
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 all commits
b9b6e86
5b787cf
3632789
af01f68
c9a0af8
36114de
2c901d4
694ce6a
d12dfc9
20351b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,29 @@ | ||
| // swift-tools-version:5.1 | ||
| // swift-tools-version:5.9 | ||
| // The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
|
||
| import PackageDescription | ||
|
|
||
| let package = Package( | ||
| name: "Punycode", | ||
| platforms: [ | ||
| .macOS(.v10_13), | ||
| .iOS(.v12), | ||
| .tvOS(.v12), | ||
| .watchOS(.v4), | ||
| .visionOS(.v1), | ||
|
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. Trailing Comma Violation: Collection literals should not have trailing commas. (trailing_comma) |
||
| ], | ||
| products: [ | ||
| .library( | ||
| name: "Punycode", | ||
| targets: ["Punycode"]) | ||
| ], | ||
| targets: [ | ||
| .target( | ||
| name: "Punycode", | ||
| dependencies: [], | ||
| path: "Sources"), | ||
| .testTarget( | ||
| name: "PunycodeSwiftTests", | ||
| dependencies: ["Punycode"], | ||
| path: "Tests") | ||
| path: "Tests"), | ||
|
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. Trailing Comma Violation: Collection literals should not have trailing commas. (trailing_comma) 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. Trailing Comma Violation: Collection literals should not have trailing commas. (trailing_comma) |
||
| ] | ||
| ) | ||
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.
Trailing Comma Violation: Collection literals should not have trailing commas. (trailing_comma)