Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
11 changes: 11 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,14 @@ let package = Package(
dependencies: dependencies,
targets: targets
)

// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
for target in package.targets {
if target.type != .plugin {
var settings = target.swiftSettings ?? []
// https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
target.swiftSettings = settings
}
}
// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
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
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
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