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 DoccGPT with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/gonzalonunez/docc-gpt.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/gonzalonunez/docc-gpt
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0a3eeb6 Add new models (#24)
Cloned https://github.com/gonzalonunez/docc-gpt.git
Revision (git rev-parse @):
0a3eeb6aebfeff5dcafc302d0b2f2e53b6ad237e
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/gonzalonunez/docc-gpt.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/gonzalonunez/docc-gpt.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/22] Write sources
[3/22] Write docc-gpt-entitlement.plist
[3/22] Copying system.txt
[3/22] Copying ex3-assistant.txt
[8/22] Write sources
[8/22] Copying ex3-user.txt
[10/22] Copying ex2-user.txt
[11/22] Write sources
[13/22] Copying ex2-assistant.txt
[13/22] Copying ex1-assistant.txt
[15/22] Copying ex1-user.txt
[18/22] Write swift-version-6F35C1178C84523A.txt
[20/44] Emitting module ArgumentParserToolInfo
[21/44] Compiling ArgumentParserToolInfo ToolInfo.swift
[22/82] Compiling Logging MetadataProvider.swift
[23/82] Compiling Logging LogHandler.swift
[24/82] Compiling Logging Locks.swift
[25/82] Emitting module Logging
[26/82] Compiling Logging Logging.swift
[27/82] Compiling ArgumentParser InputOrigin.swift
[28/82] Compiling ArgumentParser Name.swift
[29/82] Compiling ArgumentParser Parsed.swift
[30/82] Compiling ArgumentParser ParsedValues.swift
[31/86] Compiling ArgumentParser ParsableArguments.swift
[32/86] Compiling ArgumentParser ParsableArgumentsValidation.swift
[33/86] Compiling ArgumentParser ParsableCommand.swift
[34/86] Compiling ArgumentParser ArgumentDecoder.swift
[35/86] Emitting module ArgumentParser
[36/86] Compiling ArgumentParser Platform.swift
[37/86] Compiling ArgumentParser SequenceExtensions.swift
[38/86] Compiling ArgumentParser StringExtensions.swift
[39/86] Compiling ArgumentParser Tree.swift
[40/86] Emitting module XCTestDynamicOverlay
[41/86] Compiling XCTestDynamicOverlay DefaultInitializable.swift
[42/86] Compiling ArgumentParser ParserError.swift
[43/86] Compiling ArgumentParser SplitArguments.swift
[44/86] Compiling ArgumentParser DumpHelpGenerator.swift
[45/86] Compiling ArgumentParser HelpCommand.swift
[46/86] Compiling XCTestDynamicOverlay XCTIsTesting.swift
[47/86] Compiling XCTestDynamicOverlay XCTCurrentTestCase.swift
[48/86] Compiling XCTestDynamicOverlay Unimplemented.swift
[49/86] Compiling XCTestDynamicOverlay XCTFail.swift
[50/86] Compiling ArgumentParser ArgumentHelp.swift
[51/86] Compiling ArgumentParser ArgumentVisibility.swift
[52/86] Compiling ArgumentParser CompletionKind.swift
[53/86] Compiling ArgumentParser Errors.swift
[54/86] Compiling ArgumentParser BashCompletionsGenerator.swift
[55/86] Compiling ArgumentParser CompletionsGenerator.swift
[56/86] Compiling ArgumentParser FishCompletionsGenerator.swift
[57/86] Compiling ArgumentParser ZshCompletionsGenerator.swift
[58/86] Compiling ArgumentParser Argument.swift
[59/86] Compiling ArgumentParser Flag.swift
[60/86] Compiling ArgumentParser NameSpecification.swift
[61/86] Compiling ArgumentParser Option.swift
[62/86] Compiling ArgumentParser OptionGroup.swift
[63/86] Compiling ArgumentParser ArgumentDefinition.swift
[64/86] Compiling ArgumentParser ArgumentSet.swift
[65/86] Compiling ArgumentParser CommandParser.swift
[66/86] Compiling ArgumentParser InputKey.swift
[67/86] Compiling ArgumentParser HelpGenerator.swift
[68/86] Compiling ArgumentParser MessageInfo.swift
[69/86] Compiling ArgumentParser UsageGenerator.swift
[70/86] Compiling ArgumentParser CollectionExtensions.swift
[71/86] Compiling ArgumentParser AsyncParsableCommand.swift
[72/86] Compiling ArgumentParser CommandConfiguration.swift
[73/86] Compiling ArgumentParser EnumerableFlag.swift
[74/86] Compiling ArgumentParser ExpressibleByArgument.swift
[75/86] Compiling XCTestDynamicOverlay Deprecations.swift
[76/86] Compiling XCTestDynamicOverlay GeneratePlaceholder.swift
[77/86] Compiling XCTestDynamicOverlay RuntimeWarnings.swift
[78/86] Compiling Example MovieWritingOptions.swift
[79/86] Compiling Example GifLoop.swift
/Users/admin/builder/spi-builder-workspace/Sources/Example/GifLoop.swift:12:23: warning: static property 'infinite' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 |     /// The GIF should loop infinitely.
12 |     public static var infinite = GifLoop.absolute(0)
   |                       |- warning: static property 'infinite' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'infinite' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'infinite' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// A dictionary representation of the loop behavior.
[80/86] Compiling Example User.swift
[81/86] Compiling Example Post.swift
[82/86] Emitting module Example
/Users/admin/builder/spi-builder-workspace/Sources/Example/GifLoop.swift:12:23: warning: static property 'infinite' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 |     /// The GIF should loop infinitely.
12 |     public static var infinite = GifLoop.absolute(0)
   |                       |- warning: static property 'infinite' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'infinite' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'infinite' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// A dictionary representation of the loop behavior.
[83/86] Compiling Example GifWritingOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Example/GifLoop.swift:12:23: warning: static property 'infinite' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 |     /// The GIF should loop infinitely.
12 |     public static var infinite = GifLoop.absolute(0)
   |                       |- warning: static property 'infinite' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'infinite' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'infinite' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     /// A dictionary representation of the loop behavior.
[84/108] Compiling Clocks Timer.swift
[85/109] Compiling CombineSchedulers NSRecursiveLock.swift
[86/110] Compiling Clocks TestClock.swift
[87/110] Compiling Clocks UnimplementedClock.swift
[88/110] Compiling CombineSchedulers UIKit.swift
[89/110] Compiling CombineSchedulers UIScheduler.swift
[90/110] Compiling CombineSchedulers TestScheduler.swift
[91/110] Compiling CombineSchedulers UnimplementedScheduler.swift
[92/110] Compiling CombineSchedulers Timer.swift
[93/110] Compiling CombineSchedulers Lock.swift
[94/110] Compiling CombineSchedulers AnyScheduler.swift
[95/110] Compiling CombineSchedulers Concurrency.swift
[96/110] Compiling Clocks Yield.swift
[97/110] Compiling Clocks Shims.swift
[98/110] Compiling CombineSchedulers ImmediateScheduler.swift
[99/110] Compiling Clocks _AsyncTimerSequence.swift
[100/110] Compiling CombineSchedulers Deprecations.swift
[101/110] Compiling Clocks Lock.swift
[102/110] Emitting module CombineSchedulers
[103/110] Compiling Clocks AnyClock.swift
[104/110] Compiling CombineSchedulers SwiftUI.swift
[105/110] Emitting module Clocks
[106/110] Compiling Clocks ImmediateClock.swift
[107/110] Compiling Clocks SwiftUI.swift
[108/138] Compiling Dependencies ActorIsolated.swift
[109/138] Compiling Dependencies AsyncStream.swift
[110/138] Compiling Dependencies AsyncThrowingStream.swift
[111/141] Compiling Dependencies Clocks.swift
[112/141] Compiling Dependencies Context.swift
[113/141] Compiling Dependencies Date.swift
[114/141] Compiling Dependencies LockIsolated.swift
[115/141] Compiling Dependencies MainSerialExecutor.swift
[116/141] Compiling Dependencies Task.swift
[117/141] Compiling Dependencies FireAndForget.swift
[118/141] Compiling Dependencies Locale.swift
[119/141] Compiling Dependencies MainQueue.swift
[120/141] Compiling Dependencies MainRunLoop.swift
[121/141] Compiling Dependencies OpenURL.swift
[122/141] Compiling Dependencies TimeZone.swift
[123/141] Compiling Dependencies UncheckedSendable.swift
[124/141] Compiling Dependencies Dependency.swift
[125/141] Compiling Dependencies DependencyContext.swift
[126/141] Compiling Dependencies Deprecations.swift
[127/141] Compiling Dependencies Exports.swift
[128/141] Compiling Dependencies OpenExistential.swift
[129/141] Compiling Dependencies URLSession.swift
[130/141] Compiling Dependencies UUID.swift
[131/141] Compiling Dependencies WithRandomNumberGenerator.swift
[132/141] Emitting module Dependencies
[133/141] Compiling Dependencies DependencyKey.swift
[134/141] Compiling Dependencies DependencyValues.swift
[135/141] Compiling Dependencies Calendar.swift
[136/141] Compiling Dependencies RuntimeWarnings.swift
[137/141] Compiling Dependencies TypeName.swift
[138/141] Compiling Dependencies WithDependencies.swift
[139/151] Compiling docc_gpt Request.swift
[140/152] Compiling docc_gpt RateLimiter.swift
[141/152] Compiling docc_gpt DoccGPTRunnerError.swift
[142/152] Compiling docc_gpt NetworkSession.swift
[143/152] Compiling docc_gpt OpenAI.swift
[144/152] Compiling docc_gpt OpenAIService.swift
[145/152] Compiling docc_gpt DoccGPT.swift
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/DoccGPT.swift:51:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
49 | }
50 |
51 | extension Logger.Level: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |
53 | #if DEBUG
[146/152] Compiling docc_gpt resource_bundle_accessor.swift
[147/152] Compiling docc_gpt Dependencies.swift
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Dependencies.swift:7:14: warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any NetworkSession' may have shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | private enum NetworkSessionKey: DependencyKey {
 7 |   static let liveValue: any NetworkSession = DefaultNetworkSession()
   |              |- warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any NetworkSession' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: annotate 'liveValue' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/NetworkSession.swift:6:10: note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 4 | import Logging
 5 |
 6 | protocol NetworkSession {
   |          `- note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 7 |   func data(for request: URLRequest) async throws -> (Data, URLResponse)
 8 | }
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Dependencies.swift:6:14: warning: type 'any NetworkSession' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | private enum NetworkSessionKey: DependencyKey {
   |              `- warning: type 'any NetworkSession' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 7 |   static let liveValue: any NetworkSession = DefaultNetworkSession()
 8 | }
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/NetworkSession.swift:6:10: note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 4 | import Logging
 5 |
 6 | protocol NetworkSession {
   |          `- note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 7 |   func data(for request: URLRequest) async throws -> (Data, URLResponse)
 8 | }
[148/152] Emitting module docc_gpt
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Dependencies.swift:7:14: warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any NetworkSession' may have shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | private enum NetworkSessionKey: DependencyKey {
 7 |   static let liveValue: any NetworkSession = DefaultNetworkSession()
   |              |- warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any NetworkSession' may have shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: annotate 'liveValue' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/NetworkSession.swift:6:10: note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 4 | import Logging
 5 |
 6 | protocol NetworkSession {
   |          `- note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 7 |   func data(for request: URLRequest) async throws -> (Data, URLResponse)
 8 | }
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Dependencies.swift:6:14: warning: type 'any NetworkSession' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 4 | import Foundation
 5 |
 6 | private enum NetworkSessionKey: DependencyKey {
   |              `- warning: type 'any NetworkSession' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 7 |   static let liveValue: any NetworkSession = DefaultNetworkSession()
 8 | }
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/NetworkSession.swift:6:10: note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 4 | import Logging
 5 |
 6 | protocol NetworkSession {
   |          `- note: protocol 'NetworkSession' does not conform to the 'Sendable' protocol
 7 |   func data(for request: URLRequest) async throws -> (Data, URLResponse)
 8 | }
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/DoccGPT.swift:51:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
49 | }
50 |
51 | extension Logger.Level: ExpressibleByArgument {}
   | |- warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |
53 | #if DEBUG
[149/152] Compiling docc_gpt DoccGPTRunner.swift
/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/DoccGPTRunner.swift:82:20: warning: capture of 'self' with non-sendable type 'DoccGPTRunner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 |
  4 | /// A class for running the OpenAI GPT API to document Swift files.
  5 | struct DoccGPTRunner {
    |        `- note: consider making struct 'DoccGPTRunner' conform to the 'Sendable' protocol
  6 |
  7 |   init(
    :
 80 |             fileContents: fileContents,
 81 |             fileURL: fileURL,
 82 |             model: model)
    |                    `- warning: capture of 'self' with non-sendable type 'DoccGPTRunner' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 83 |
 84 |           try await documentFile(with: request)
[149/152] Write Objects.LinkFileList
[150/152] Linking docc-gpt
[151/152] Applying docc-gpt
Build complete! (55.20s)
Fetching https://github.com/pointfreeco/combine-schedulers
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/pointfreeco/swift-dependencies.git
Fetching https://github.com/pointfreeco/swift-clocks
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
Fetching https://github.com/apple/swift-log
[1/1275] Fetching swift-clocks
[103/3519] Fetching swift-clocks, combine-schedulers
[171/6872] Fetching swift-clocks, combine-schedulers, swift-log
[387/10860] Fetching swift-clocks, combine-schedulers, swift-log, swift-dependencies
[388/13216] Fetching swift-clocks, combine-schedulers, swift-log, swift-dependencies, xctest-dynamic-overlay
[4295/24895] Fetching swift-clocks, combine-schedulers, swift-log, swift-dependencies, xctest-dynamic-overlay, swift-argument-parser
Fetched https://github.com/pointfreeco/combine-schedulers from cache (1.09s)
Fetched https://github.com/pointfreeco/swift-clocks from cache (1.09s)
[7955/21376] Fetching swift-log, swift-dependencies, xctest-dynamic-overlay, swift-argument-parser
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.64s)
Fetched https://github.com/apple/swift-log from cache (1.64s)
Fetched https://github.com/pointfreeco/swift-dependencies.git from cache (1.64s)
Fetched https://github.com/apple/swift-argument-parser from cache (1.64s)
Computing version for https://github.com/pointfreeco/swift-dependencies.git
Computed https://github.com/pointfreeco/swift-dependencies.git at 0.5.0 (0.73s)
Computing version for https://github.com/apple/swift-log
Computed https://github.com/apple/swift-log at 1.5.2 (0.69s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.2.2 (0.72s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 0.8.5 (0.68s)
Computing version for https://github.com/pointfreeco/swift-clocks
Computed https://github.com/pointfreeco/swift-clocks at 0.3.0 (0.68s)
Computing version for https://github.com/pointfreeco/combine-schedulers
Computed https://github.com/pointfreeco/combine-schedulers at 0.10.0 (0.68s)
Creating working copy for https://github.com/apple/swift-log
Working copy of https://github.com/apple/swift-log resolved at 1.5.2
Creating working copy for https://github.com/pointfreeco/combine-schedulers
Working copy of https://github.com/pointfreeco/combine-schedulers resolved at 0.10.0
Creating working copy for https://github.com/pointfreeco/swift-clocks
Working copy of https://github.com/pointfreeco/swift-clocks resolved at 0.3.0
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.2.2
Creating working copy for https://github.com/pointfreeco/swift-dependencies.git
Working copy of https://github.com/pointfreeco/swift-dependencies.git resolved at 0.5.0
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 0.8.5
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    },
    {
      "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" : "swift-dependencies",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.5.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-dependencies.git"
    }
  ],
  "manifest_display_name" : "DoccGPT",
  "name" : "DoccGPT",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "docc-gpt",
      "targets" : [
        "docc-gpt"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "Example",
      "targets" : [
        "Example"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "docc_gpt",
      "module_type" : "SwiftTarget",
      "name" : "docc-gpt",
      "path" : "Sources/docc-gpt",
      "product_dependencies" : [
        "ArgumentParser",
        "Dependencies",
        "Logging"
      ],
      "product_memberships" : [
        "docc-gpt"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Resources/ex3-assistant.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Resources/system.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Resources/ex1-assistant.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Resources/ex1-user.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Resources/ex2-user.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Resources/ex2-assistant.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/docc-gpt/Resources/ex3-user.txt",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Dependencies.swift",
        "DoccGPT.swift",
        "DoccGPTRunner.swift",
        "DoccGPTRunnerError.swift",
        "NetworkSession.swift",
        "OpenAI.swift",
        "OpenAIService.swift",
        "RateLimiter.swift",
        "Request.swift"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "Example",
      "module_type" : "SwiftTarget",
      "name" : "Example",
      "path" : "Sources/Example",
      "product_memberships" : [
        "Example"
      ],
      "sources" : [
        "GifLoop.swift",
        "GifWritingOptions.swift",
        "MovieWritingOptions.swift",
        "Post.swift",
        "User.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.