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 @@ -350,6 +350,7 @@ let package = Package(
.target(
name: "ContainerResource",
dependencies: [
.product(name: "Collections", package: "swift-collections"),
.product(name: "Containerization", package: "containerization"),
"ContainerXPC",
"CAuditToken",
Expand Down
2 changes: 1 addition & 1 deletion Sources/ContainerResource/Common/ApplicationError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/// Protocol for errors with a stable code and structured metadata.
/// This allows the client to present the error as it chooses.

import Collections
import OrderedCollections

public protocol AppError: Error {
var code: AppErrorCode { get }
Expand Down
2 changes: 1 addition & 1 deletion Sources/ContainerResource/Common/ResourceLabels.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//===----------------------------------------------------------------------===//

import Collections
import OrderedCollections

/// Metadata for a managed resource.
public struct ResourceLabels: Sendable, Equatable {
Expand Down
Loading