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
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ let defaultSwiftSettings: [SwiftSetting] = [
.swiftLanguageMode(.v6),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("InternalImportsByDefault"),
.enableUpcomingFeature("MemberImportVisibility"),
]

let targets: [Target] = [
Expand Down
1 change: 1 addition & 0 deletions Sources/GRPCInteropTests/InteroperabilityTestCases.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

internal import GRPCCore
private import SwiftProtobuf

private import struct Foundation.Data

Expand Down
1 change: 1 addition & 0 deletions Sources/GRPCInteropTests/TestService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

private import Foundation
public import GRPCCore
private import SwiftProtobuf

public struct TestService: Grpc_Testing_TestService.ServiceProtocol {
public init() {}
Expand Down
1 change: 1 addition & 0 deletions Tests/GRPCHealthServiceTests/HealthTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import GRPCCore
import GRPCHealthService
import GRPCInProcessTransport
import SwiftProtobuf
import XCTest

final class HealthTests: XCTestCase {
Expand Down
Loading