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
2 changes: 1 addition & 1 deletion Plugins/ContainerImageBuilder/Pipe+lines.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import Foundation
import class Foundation.Pipe

extension Pipe {
var lines: AsyncThrowingStream<String, Error> {
Expand Down
2 changes: 1 addition & 1 deletion Sources/ContainerRegistry/Blobs.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import Foundation
import HTTPTypes
import Crypto
import struct Crypto.SHA256

/// Calculates the digest of a blob of data.
/// - Parameter data: Blob of data to digest.
Expand Down
2 changes: 1 addition & 1 deletion Sources/ContainerRegistry/ImageManifest+Digest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//===----------------------------------------------------------------------===//

import Foundation
import Crypto
import struct Crypto.SHA256

public extension ImageManifest {
var digest: String {
Expand Down
2 changes: 1 addition & 1 deletion Sources/Tar/tar.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import Foundation
import struct Foundation.Data

// This file defines a basic tar writer which produces POSIX tar files.
// This avoids the need to depend on a system-provided tar binary.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import Foundation
import struct Foundation.Data
import ContainerRegistry

extension RegistryClient {
Expand Down
2 changes: 1 addition & 1 deletion Tests/ContainerRegistryTests/SmokeTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import Foundation
import class Foundation.ProcessInfo
import ContainerRegistry
import Testing

Expand Down
1 change: 0 additions & 1 deletion Tests/TarTests/TarUnitTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
//
//===----------------------------------------------------------------------===//

import Foundation
import Testing

@testable import Tar
Expand Down
3 changes: 1 addition & 2 deletions Tests/containertoolTests/ZlibTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
//===----------------------------------------------------------------------===//

@testable import containertool
import Crypto
import Foundation
import struct Crypto.SHA256
import Testing

// Check that compressing the same data on macOS and Linux produces the same output.
Expand Down