Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions Package.resolved

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
Expand Up @@ -61,7 +61,11 @@ extension API {
}


extension PackageCollectionSigning.Model.SignedCollection: @retroactive Vapor.Content {}
extension SignedCollection: @retroactive RequestDecodable {}
extension SignedCollection: @retroactive ResponseEncodable {}
extension SignedCollection: @retroactive AsyncRequestDecodable {}
extension SignedCollection: @retroactive AsyncResponseEncodable {}
extension SignedCollection: @retroactive Content {}


extension API {
Expand Down
4 changes: 3 additions & 1 deletion Tests/AppTests/Helpers/Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ import Fluent
// MARK: - Useful extensions


extension Foundation.URL: Swift.ExpressibleByStringLiteral {
extension URL: @retroactive ExpressibleByExtendedGraphemeClusterLiteral {}
extension URL: @retroactive ExpressibleByUnicodeScalarLiteral {}
extension URL: @retroactive ExpressibleByStringLiteral {
public init(stringLiteral value: String) {
precondition(!value.isEmpty, "cannot convert empty string to URL")
self = URL(string: value)!
Expand Down
Loading