This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Scribe with Swift 6.0 for Linux.

Swift 6 data race errors: 0

Build Command

bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/0xLeif/Scribe.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/0xLeif/Scribe
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at e42d0f1 Update docc.yml
Cloned https://github.com/0xLeif/Scribe.git
Revision (git rev-parse @):
e42d0f100cd08c7c04af26057b958b3ec4f6b76c
SUCCESS checkout https://github.com/0xLeif/Scribe.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/0xLeif/Scribe.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Fetching https://github.com/apple/swift-log
Fetching https://github.com/0xLeif/Plugin
[1/153] Fetching plugin
[154/3506] Fetching plugin, swift-log
Fetched https://github.com/0xLeif/Plugin from cache (0.31s)
Fetched https://github.com/apple/swift-log from cache (0.31s)
Computing version for https://github.com/0xLeif/Plugin
Computed https://github.com/0xLeif/Plugin at 2.0.2 (0.43s)
Fetching https://github.com/0xLeif/Fork
[1/381] Fetching fork
Fetched https://github.com/0xLeif/Fork from cache (0.24s)
Computing version for https://github.com/0xLeif/Fork
Computed https://github.com/0xLeif/Fork at 1.3.0 (0.44s)
Computing version for https://github.com/apple/swift-log
Computed https://github.com/apple/swift-log at 1.5.4 (0.43s)
Creating working copy for https://github.com/0xLeif/Plugin
Working copy of https://github.com/0xLeif/Plugin resolved at 2.0.2
Creating working copy for https://github.com/0xLeif/Fork
Working copy of https://github.com/0xLeif/Fork resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-log
Working copy of https://github.com/apple/swift-log resolved at 1.5.4
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/19] Compiling Fork Fork.swift
[7/19] Compiling Fork ForkedActor.swift
[8/20] Compiling Fork KeyPathActor.swift
[9/20] Compiling Fork BatchedForkedArray.swift
[10/20] Emitting module Fork
[11/20] Compiling Fork Task+Fork.swift
[12/20] Compiling Fork Actor+ForkedActor.swift
[13/20] Compiling Fork Sequence+BatchedForkedArray.swift
[14/20] Compiling Fork Sequence+ForkedArray.swift
[15/20] Compiling Fork ForkedArray.swift
[17/26] Compiling Logging MetadataProvider.swift
[18/26] Compiling Logging Logging.swift
[19/26] Compiling Logging LogHandler.swift
[20/26] Emitting module Logging
[21/26] Compiling Logging Locks.swift
[22/27] Compiling Plugin ImmutablePluginable.swift
[23/27] Emitting module Plugin
[24/27] Compiling Plugin ImmutablePlugin.swift
[26/27] Compiling Plugin Plugin.swift
[27/27] Compiling Plugin Pluginable.swift
[29/31] Compiling Scribe Scribe.swift
/host/spi-builder-workspace/Sources/Scribe/Scribe.swift:112:23: warning: capture of 'self' with non-sendable type 'Scribe' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  4 | /// A class that serves as the main logging.
  5 | /// It has the ability to have plugins attached to it that can further process the logs.
  6 | open class Scribe: Pluginable {
    |            `- note: class 'Scribe' does not conform to the 'Sendable' protocol
  7 |     /// The structure that represents the payload passed to each plugin when a log is made.
  8 |     public struct PluginPayload {
    :
110 |
111 |         return Task {
112 |             try await handle(value: pluginPayload)
    |                       `- warning: capture of 'self' with non-sendable type 'Scribe' in a `@Sendable` closure; this is an error in the Swift 6 language mode
113 |         }
114 |     }
/host/spi-builder-workspace/Sources/Scribe/Scribe.swift:112:37: warning: capture of 'pluginPayload' with non-sendable type 'Scribe.PluginPayload' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  6 | open class Scribe: Pluginable {
  7 |     /// The structure that represents the payload passed to each plugin when a log is made.
  8 |     public struct PluginPayload {
    |                   `- note: consider making struct 'PluginPayload' conform to the 'Sendable' protocol
  9 |         /// The log level of the message.
 10 |         public let level: Level
    :
110 |
111 |         return Task {
112 |             try await handle(value: pluginPayload)
    |                                     `- warning: capture of 'pluginPayload' with non-sendable type 'Scribe.PluginPayload' in a `@Sendable` closure; this is an error in the Swift 6 language mode
113 |         }
114 |     }
[30/31] Emitting module Scribe
[31/31] Compiling Scribe ScribePlugin.swift
Build complete! (11.54s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log"
    },
    {
      "identity" : "plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/0xLeif/Plugin"
    }
  ],
  "manifest_display_name" : "Scribe",
  "name" : "Scribe",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Scribe",
      "targets" : [
        "Scribe"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ScribeTests",
      "module_type" : "SwiftTarget",
      "name" : "ScribeTests",
      "path" : "Tests/ScribeTests",
      "sources" : [
        "ScribeTests.swift"
      ],
      "target_dependencies" : [
        "Scribe"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Scribe",
      "module_type" : "SwiftTarget",
      "name" : "Scribe",
      "path" : "Sources/Scribe",
      "product_dependencies" : [
        "Logging",
        "Plugin"
      ],
      "product_memberships" : [
        "Scribe"
      ],
      "sources" : [
        "Scribe.swift",
        "ScribePlugin.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.