The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Parchment, reference 1.3.1 (5d888b), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 05:55:00 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/k-kohey/Parchment-swift.git
Reference: 1.3.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/k-kohey/Parchment-swift
 * tag               1.3.1      -> FETCH_HEAD
HEAD is now at 5d888b0 Merge pull request #35 from k-kohey/fix/module_name
Cloned https://github.com/k-kohey/Parchment-swift.git
Revision (git rev-parse @):
5d888b07f7e5efb974b53e91164b8369b7995770
SUCCESS checkout https://github.com/k-kohey/Parchment-swift.git at 1.3.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/k-kohey/Parchment-swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/7] Write sources
[6/7] Write swift-version-1EA4D86E10B52AF.txt
[8/51] Compiling ParchmentCore Mutation.swift
[9/52] Compiling SQLite Value.swift
[10/52] Compiling SQLite Cipher.swift
[11/52] Compiling SQLite FTS4.swift
[12/52] Compiling SQLite FTS5.swift
[13/52] Compiling SQLite SQLiteFeature.swift
[14/52] Compiling SQLite SQLiteVersion.swift
[15/52] Compiling SQLite Statement.swift
[16/52] Compiling SQLite URIQueryParameter.swift
[17/55] Compiling SQLite CustomFunctions.swift
[18/55] Compiling SQLite DateAndTimeFunctions.swift
[19/55] Compiling SQLite Expression.swift
[20/55] Compiling SQLite Operators.swift
[21/55] Compiling SQLite Query+with.swift
[22/55] Compiling SQLite Query.swift
[23/55] Compiling SQLite Connection+Pragmas.swift
[24/55] Compiling SQLite Connection.swift
[25/55] Compiling SQLite Errors.swift
[26/55] Compiling SQLite Result.swift
[27/55] Compiling SQLite Coding.swift
[28/55] Compiling SQLite Collation.swift
[29/55] Compiling SQLite CoreFunctions.swift
[30/55] Compiling SQLite RTree.swift
[31/55] Compiling SQLite Foundation.swift
[32/55] Compiling SQLite Helpers.swift
[33/55] Compiling SQLite Connection+Schema.swift
[34/55] Compiling SQLite SchemaChanger.swift
[35/55] Compiling SQLite SchemaDefinitions.swift
[36/55] Compiling SQLite SchemaReader.swift
[37/55] Compiling SQLite AggregateFunctions.swift
[38/55] Emitting module SQLite
[39/55] Compiling SQLite Backup.swift
[40/55] Compiling SQLite Blob.swift
[41/55] Compiling SQLite Connection+Aggregation.swift
[42/55] Compiling SQLite Connection+Attach.swift
[43/55] Compiling ParchmentCore Payload.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParchmentCore/Payload.swift:190:26: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
188 |
189 |         let parametersContainer = try container.nestedContainer(keyedBy: DynamicCodingKeys.self, forKey: .parameters)
190 |         parameters = try decodeFromContainer(container: parametersContainer)
    |                          `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
191 |     }
192 |
[44/55] Compiling ParchmentCore LoggerComponent.swift
[45/55] Compiling ParchmentCore LoggableDictonary.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParchmentCore/LoggableDictonary.swift:14:1: warning: extension declares a conformance of imported type 'PartialKeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | public typealias LoggableDictonary = [PartialKeyPath<Loggable>: Sendable]
13 |
14 | extension PartialKeyPath<Loggable>: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'PartialKeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 |
16 | extension LoggableDictonary: Loggable {
[46/55] Compiling ParchmentCore LoggerBundler.swift
[47/55] Compiling ParchmentCore BufferFlowController.swift
[48/55] Compiling ParchmentCore Loggable.swift
[49/55] Compiling ParchmentCore LogBuffer.swift
[50/55] Compiling ParchmentCore AnyLoggable.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParchmentCore/AnyLoggable.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
10 | @globalActor
11 | final actor AnyLoggableActor {
12 |     static var shared: AnyLoggableActor = .init()
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[51/55] Emitting module ParchmentCore
/Users/admin/builder/spi-builder-workspace/Sources/ParchmentCore/AnyLoggable.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
10 | @globalActor
11 | final actor AnyLoggableActor {
12 |     static var shared: AnyLoggableActor = .init()
   |                |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ParchmentCore/LoggableDictonary.swift:14:1: warning: extension declares a conformance of imported type 'PartialKeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | public typealias LoggableDictonary = [PartialKeyPath<Loggable>: Sendable]
13 |
14 | extension PartialKeyPath<Loggable>: @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'PartialKeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 |
16 | extension LoggableDictonary: Loggable {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[52/55] Compiling ParchmentCore osLogger.swift
[53/57] Compiling TestSupport Stub.swift
[54/57] Emitting module TestSupport
[55/57] Compiling SQLite Schema.swift
[56/57] Compiling SQLite Setter.swift
[57/57] Compiling SQLite WindowFunctions.swift
[58/65] Compiling Parchment LoggerBundler+.swift
[59/65] Compiling Parchment Export.swift
[60/65] Compiling Parchment DeviceDataMutation.swift
[61/65] Compiling Parchment DefaultBufferFlowController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/DefaultBufferFlowController.swift:18:17: warning: stored property 'bufferTask' of 'Sendable'-conforming class 'DefaultBufferFlowController' is mutable; this is an error in the Swift 6 language mode
16 |     @MainActor private var inputAccumulationPayloads: [Payload] = []
17 |
18 |     private var bufferTask: Task<Void, Error>? = nil
   |                 `- warning: stored property 'bufferTask' of 'Sendable'-conforming class 'DefaultBufferFlowController' is mutable; this is an error in the Swift 6 language mode
19 |
20 |     public init(
[62/65] Emitting module Parchment
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/DefaultBufferFlowController.swift:18:17: warning: stored property 'bufferTask' of 'Sendable'-conforming class 'DefaultBufferFlowController' is mutable; this is an error in the Swift 6 language mode
16 |     @MainActor private var inputAccumulationPayloads: [Payload] = []
17 |
18 |     private var bufferTask: Task<Void, Error>? = nil
   |                 `- warning: stored property 'bufferTask' of 'Sendable'-conforming class 'DefaultBufferFlowController' is mutable; this is an error in the Swift 6 language mode
19 |
20 |     public init(
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/SQLiteBuffer.swift:14:20: warning: static property 'event' is not concurrency-safe because non-'Sendable' type 'Expression<Data>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
12 | public final actor SQLiteBuffer: LogBuffer {
13 |     private enum Column {
14 |         static let event = Expression<Data>("event")
   |                    `- warning: static property 'event' is not concurrency-safe because non-'Sendable' type 'Expression<Data>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
15 |         static let timestamp = Expression<Date>("timestamp")
16 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SQLite.swift/Sources/SQLite/Typed/Expression.swift:56:15: note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 54 |
 55 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
 56 | public struct Expression<Datatype>: ExpressionType {
    |               `- note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 57 |
 58 |     public typealias UnderlyingType = Datatype
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/SQLiteBuffer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SQLite'
 7 |
 8 | @_spi(ParchmentCore) import ParchmentCore
 9 | import SQLite
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SQLite'
10 | import Foundation
11 |
12 | public final actor SQLiteBuffer: LogBuffer {
13 |     private enum Column {
14 |         static let event = Expression<Data>("event")
   |                    |- note: add '@MainActor' to make static property 'event' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         static let timestamp = Expression<Date>("timestamp")
16 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/SQLiteBuffer.swift:15:20: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Expression<Date>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
13 |     private enum Column {
14 |         static let event = Expression<Data>("event")
15 |         static let timestamp = Expression<Date>("timestamp")
   |                    |- warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Expression<Date>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                    |- note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     }
17 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SQLite.swift/Sources/SQLite/Typed/Expression.swift:56:15: note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 54 |
 55 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
 56 | public struct Expression<Datatype>: ExpressionType {
    |               `- note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 57 |
 58 |     public typealias UnderlyingType = Datatype
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[63/65] Compiling Parchment SQLiteBuffer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/SQLiteBuffer.swift:14:20: warning: static property 'event' is not concurrency-safe because non-'Sendable' type 'Expression<Data>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
12 | public final actor SQLiteBuffer: LogBuffer {
13 |     private enum Column {
14 |         static let event = Expression<Data>("event")
   |                    `- warning: static property 'event' is not concurrency-safe because non-'Sendable' type 'Expression<Data>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
15 |         static let timestamp = Expression<Date>("timestamp")
16 |     }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SQLite.swift/Sources/SQLite/Typed/Expression.swift:56:15: note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 54 |
 55 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
 56 | public struct Expression<Datatype>: ExpressionType {
    |               `- note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 57 |
 58 |     public typealias UnderlyingType = Datatype
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/SQLiteBuffer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SQLite'
 7 |
 8 | @_spi(ParchmentCore) import ParchmentCore
 9 | import SQLite
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SQLite'
10 | import Foundation
11 |
12 | public final actor SQLiteBuffer: LogBuffer {
13 |     private enum Column {
14 |         static let event = Expression<Data>("event")
   |                    |- note: add '@MainActor' to make static property 'event' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |         static let timestamp = Expression<Date>("timestamp")
16 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/SQLiteBuffer.swift:15:20: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Expression<Date>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
13 |     private enum Column {
14 |         static let event = Expression<Data>("event")
15 |         static let timestamp = Expression<Date>("timestamp")
   |                    |- warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'Expression<Date>' may have shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
   |                    |- note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     }
17 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SQLite.swift/Sources/SQLite/Typed/Expression.swift:56:15: note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 54 |
 55 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
 56 | public struct Expression<Datatype>: ExpressionType {
    |               `- note: generic struct 'Expression' does not conform to the 'Sendable' protocol
 57 |
 58 |     public typealias UnderlyingType = Datatype
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[64/65] Compiling Parchment View+track.swift
[65/65] Compiling Parchment Tracked.swift
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/Tracked.swift:87:17: warning: capture of 'self' with non-sendable type 'Binding<Tracked<InnerType, Scope>>' in a '@Sendable' closure [#SendableClosureCaptures]
13 | ///     @Tracked(name: "age", with: logger, scope: \.age) var state: State
14 | @propertyWrapper
15 | public struct Tracked<Value: Sendable, ScopeValue: Sendable> {
   |               `- note: consider making generic struct 'Tracked' conform to the 'Sendable' protocol
16 |     private let logger: LoggerBundler
17 |     private let option: LoggerBundler.LoggingOption
   :
85 |         Binding<InnerType>(
86 |             get: {
87 |                 wrappedValue.wrappedValue
   |                 `- warning: capture of 'self' with non-sendable type 'Binding<Tracked<InnerType, Scope>>' in a '@Sendable' closure [#SendableClosureCaptures]
88 |             }, set: {
89 |                 wrappedValue.wrappedValue = $0
/Users/admin/builder/spi-builder-workspace/Sources/Parchment/Tracked.swift:89:17: warning: capture of 'self' with non-sendable type 'Binding<Tracked<InnerType, Scope>>' in a '@Sendable' closure [#SendableClosureCaptures]
13 | ///     @Tracked(name: "age", with: logger, scope: \.age) var state: State
14 | @propertyWrapper
15 | public struct Tracked<Value: Sendable, ScopeValue: Sendable> {
   |               `- note: consider making generic struct 'Tracked' conform to the 'Sendable' protocol
16 |     private let logger: LoggerBundler
17 |     private let option: LoggerBundler.LoggingOption
   :
87 |                 wrappedValue.wrappedValue
88 |             }, set: {
89 |                 wrappedValue.wrappedValue = $0
   |                 `- warning: capture of 'self' with non-sendable type 'Binding<Tracked<InnerType, Scope>>' in a '@Sendable' closure [#SendableClosureCaptures]
90 |             })
91 |     }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
Build complete! (26.90s)
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/stephencelis/SQLite.swift.git
[1/2082] Fetching swift-docc-plugin
[85/11933] Fetching swift-docc-plugin, sqlite.swift
Fetched https://github.com/stephencelis/SQLite.swift.git from cache (1.35s)
Fetched https://github.com/apple/swift-docc-plugin from cache (1.35s)
Computing version for https://github.com/stephencelis/SQLite.swift.git
Computed https://github.com/stephencelis/SQLite.swift.git at 0.15.4 (1.81s)
Fetching https://github.com/swiftlang/swift-toolchain-sqlite
[1/136] Fetching swift-toolchain-sqlite
Fetched https://github.com/swiftlang/swift-toolchain-sqlite from cache (1.24s)
Computing version for https://github.com/swiftlang/swift-toolchain-sqlite
Computed https://github.com/swiftlang/swift-toolchain-sqlite at 1.0.4 (1.68s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (0.51s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.08s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.67s)
Creating working copy for https://github.com/swiftlang/swift-toolchain-sqlite
Working copy of https://github.com/swiftlang/swift-toolchain-sqlite resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/stephencelis/SQLite.swift.git
Working copy of https://github.com/stephencelis/SQLite.swift.git resolved at 0.15.4
warning: 'sqlite.swift': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/SQLite.swift/Sources/SQLite/PrivacyInfo.xcprivacy
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "sqlite.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.14.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/stephencelis/SQLite.swift.git"
    }
  ],
  "manifest_display_name" : "Parchment",
  "name" : "Parchment",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "ParchmentCore",
      "targets" : [
        "ParchmentCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Parchment",
      "targets" : [
        "Parchment"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TestSupport",
      "module_type" : "SwiftTarget",
      "name" : "TestSupport",
      "path" : "Sources/TestSupport",
      "sources" : [
        "Stub.swift"
      ],
      "target_dependencies" : [
        "ParchmentCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ParchmentTests",
      "module_type" : "SwiftTarget",
      "name" : "ParchmentTests",
      "path" : "Tests/ParchmentTests",
      "sources" : [
        "DefaultBufferFlowControllerTests.swift",
        "DeviceDataMutationTests.swift",
        "SQLiteBufferTests.swift",
        "TrackedTests.swift"
      ],
      "target_dependencies" : [
        "Parchment",
        "TestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ParchmentCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "ParchmentCoreTests",
      "path" : "Tests/ParchmentCoreTests",
      "sources" : [
        "AnyLoggableTests.swift",
        "BufferRecordTests.swift",
        "LoggerBundlerTests.swift",
        "MutationTests.swift"
      ],
      "target_dependencies" : [
        "ParchmentCore",
        "TestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ParchmentCore",
      "module_type" : "SwiftTarget",
      "name" : "ParchmentCore",
      "path" : "Sources/ParchmentCore",
      "product_memberships" : [
        "ParchmentCore",
        "Parchment"
      ],
      "sources" : [
        "AnyLoggable.swift",
        "BufferFlowController.swift",
        "LogBuffer.swift",
        "Loggable.swift",
        "LoggableDictonary.swift",
        "LoggerBundler.swift",
        "LoggerComponent.swift",
        "Mutation.swift",
        "Payload.swift",
        "osLogger.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Parchment",
      "module_type" : "SwiftTarget",
      "name" : "Parchment",
      "path" : "Sources/Parchment",
      "product_dependencies" : [
        "SQLite"
      ],
      "product_memberships" : [
        "Parchment"
      ],
      "sources" : [
        "DefaultBufferFlowController.swift",
        "DeviceDataMutation.swift",
        "Export.swift",
        "LoggerBundler+.swift",
        "SQLiteBuffer.swift",
        "Tracked.swift",
        "View+track.swift"
      ],
      "target_dependencies" : [
        "ParchmentCore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.