The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CodableCSV with Swift 5.9 for macOS (SPM).

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.19.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dehesa/CodableCSV.git
Reference: 0.6.7
Initialized empty Git repository in /Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/.git/
From https://github.com/dehesa/CodableCSV
 * tag               0.6.7      -> FETCH_HEAD
HEAD is now at 99ace2c CI tests on DEBUG
Cloned https://github.com/dehesa/CodableCSV.git into spi-builder-workspace
99ace2cfdfbc19108b529c021005fb57a460e715
SUCCESS checkout https://github.com/dehesa/CodableCSV.git at 0.6.7
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             5.9
Building package at path:  spi-builder-workspace
Running build ...
env DEVELOPER_DIR="/Applications/Xcode-15.0.0-Beta.app" xcrun swift build --arch arm64
Building ... (attempt 1)
Building for debugging...
[1/37] Compiling CodableCSV ReaderAPI.swift
[2/37] Compiling CodableCSV ReaderCollections.swift
[3/37] Compiling CodableCSV ReaderConfiguration.swift
[4/37] Compiling CodableCSV ReaderBuffer.swift
[5/37] Compiling CodableCSV ReaderDecoder.swift
[6/42] Compiling CodableCSV ShadowEncoder.swift
[7/42] Compiling CodableCSV Sink.swift
[8/42] Compiling CodableCSV SinkBuffer.swift
[9/42] Compiling CodableCSV BOM.swift
[10/42] Compiling CodableCSV Reader.swift
[11/42] Compiling CodableCSV EncoderLazy.swift
[12/42] Compiling CodableCSV InvalidEncodingContainer.swift
[13/42] Compiling CodableCSV KeyedEncodingContainer.swift
[14/42] Compiling CodableCSV SingleValueEncodingContainer.swift
[15/42] Compiling CodableCSV UnkeyedEncodingContainer.swift
[16/42] Compiling CodableCSV ReaderEncodings.swift
[17/42] Compiling CodableCSV ReaderInference.swift
[18/42] Compiling CodableCSV ReaderInternals.swift
[19/42] Compiling CodableCSV Writer.swift
[20/42] Compiling CodableCSV WriterAPI.swift
[21/42] Emitting module CodableCSV
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:3:19: note: type declared here
    public struct Encoding : RawRepresentable, Sendable {
                  ^
[22/42] Compiling CodableCSV Delimiter.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[23/42] Compiling CodableCSV Error.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[24/42] Compiling CodableCSV Strategy.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[25/42] Compiling CodableCSV Utils.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[26/42] Compiling CodableCSV CodingKey.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[27/42] Compiling CodableCSV Decoder.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[28/42] Compiling CodableCSV DecoderConfiguration.swift
[29/42] Compiling CodableCSV DecoderLazy.swift
[30/42] Compiling CodableCSV KeyedDecodingContainer.swift
[31/42] Compiling CodableCSV SingleValueDecodingContainer.swift
[32/42] Compiling CodableCSV UnkeyedDecodingContainer.swift
[33/42] Compiling CodableCSV ShadowDecoder.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[34/42] Compiling CodableCSV Source.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[35/42] Compiling CodableCSV SourceBuffer.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[36/42] Compiling CodableCSV Encoder.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[37/42] Compiling CodableCSV EncoderConfiguration.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[38/42] Compiling CodableCSV WriterConfiguration.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:3:19: note: type declared here
    public struct Encoding : RawRepresentable, Sendable {
                  ^
[39/42] Compiling CodableCSV WriterEncoder.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:3:19: note: type declared here
    public struct Encoding : RawRepresentable, Sendable {
                  ^
[40/42] Compiling CodableCSV WriterEncoding.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:3:19: note: type declared here
    public struct Encoding : RawRepresentable, Sendable {
                  ^
[41/42] Compiling CodableCSV WriterInference.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:3:19: note: type declared here
    public struct Encoding : RawRepresentable, Sendable {
                  ^
[42/42] Compiling CodableCSV WriterInternals.swift
/Users/builder/builds/TDmZkXJm/3/finestructure/swiftpackageindex-builder/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:3:19: note: type declared here
    public struct Encoding : RawRepresentable, Sendable {
                  ^
Build complete! (8.27s)
Build complete.
Done.