The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of CodableCSV, reference master (99ace2), with Swift 6.2 (beta) for Linux on 19 Jun 2025 02:24:27 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dehesa/CodableCSV.git
Reference: master
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/dehesa/CodableCSV
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 99ace2c CI tests on DEBUG
Cloned https://github.com/dehesa/CodableCSV.git
Revision (git rev-parse @):
99ace2cfdfbc19108b529c021005fb57a460e715
SUCCESS checkout https://github.com/dehesa/CodableCSV.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/dehesa/CodableCSV.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/39] Emitting module CodableCSV
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |   /// - parameter type: The type of the value to decode from the supplied file.
 36 |   /// - parameter data: The data blob representing a CSV file.
 37 |   open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 38 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 39 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 45 |   /// - parameter type: The type of the value to decode from the supplied file.
 46 |   /// - parameter string: A Swift string representing a CSV file.
 47 |   open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 48 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 49 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 55 |   /// - parameter type: The type of the value to decode from the supplied file.
 56 |   /// - parameter url: The URL pointing to the file to decode.
 57 |   open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 58 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 59 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 65 |   /// - parameter type: The type of the value to decode from the supplied file.
 66 |   /// - parameter stream: The input stream providing the raw bytes.
 67 |   open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 68 |     let reader = try CSVReader(input: stream, configuration: self._configuration.readerConfiguration)
 69 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 77 |   /// - parameter data: The data blob representing a CSV file.
 78 |   /// - throws: `CSVError<CSVReader>` exclusively.
 79 |   open func lazy(from data: Data) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 80 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 81 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 86 |   /// - parameter string: A Swift string representing a CSV file.
 87 |   /// - throws: `CSVError<CSVReader>` exclusively.
 88 |   open func lazy(from string: String) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 89 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 90 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 95 |   /// - parameter url: The URL pointing to the file to decode.
 96 |   /// - throws: `CSVError<CSVReader>` exclusively.
 97 |   open func lazy(from url: URL) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 98 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 99 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 36 |   /// - parameter type: The Swift type for a data blob.
 37 |   /// - returns: `Data` blob with the CSV representation of `value`.
 38 |   open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 39 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 40 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 49 |   /// - parameter type: The Swift type for a string.
 50 |   /// - returns: `String` with the CSV representation of `value`.
 51 |   open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 52 |     let data = try self.encode(value, into: Data.self)
 53 |     let encoding = self._configuration.writerConfiguration.encoding ?? .utf8
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 59 |   /// - parameter fileURL: The file receiving the encoded values.
 60 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 61 |   open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 62 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 63 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 72 |   /// - parameter type: The Swift type for a data blob.
 73 |   /// - returns: Instance used for _on demand_ encoding.
 74 |   open func lazy(into type: Data.Type) throws -> Lazy<Data> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 75 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 76 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 81 |   /// - parameter type: The Swift type for a data blob.
 82 |   /// - returns: Instance used for _on demand_ encoding.
 83 |   open func lazy(into type: String.Type) throws -> Lazy<String> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 84 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 85 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 91 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 92 |   /// - returns: Instance used for _on demand_ encoding.
 93 |   open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 94 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 95 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 5 |     ///
 6 |     /// If no encoding is provided, UTF8 is presumed unless the CSV writer points to a file, in which case that file encoding will be used.
 7 |     public var encoding: String.Encoding?
   |                                 `- warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 8 |     /// Indicates whether a [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) will be included at the beginning of the CSV representation.
 9 |     ///
FoundationEssentials.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
[4/44] Compiling CodableCSV WriterConfiguration.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 5 |     ///
 6 |     /// If no encoding is provided, UTF8 is presumed unless the CSV writer points to a file, in which case that file encoding will be used.
 7 |     public var encoding: String.Encoding?
   |                                 `- warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 8 |     /// Indicates whether a [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) will be included at the beginning of the CSV representation.
 9 |     ///
FoundationEssentials.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
[5/44] Compiling CodableCSV WriterEncoder.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 5 |     ///
 6 |     /// If no encoding is provided, UTF8 is presumed unless the CSV writer points to a file, in which case that file encoding will be used.
 7 |     public var encoding: String.Encoding?
   |                                 `- warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 8 |     /// Indicates whether a [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) will be included at the beginning of the CSV representation.
 9 |     ///
FoundationEssentials.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
[6/44] Compiling CodableCSV WriterEncoding.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 5 |     ///
 6 |     /// If no encoding is provided, UTF8 is presumed unless the CSV writer points to a file, in which case that file encoding will be used.
 7 |     public var encoding: String.Encoding?
   |                                 `- warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 8 |     /// Indicates whether a [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) will be included at the beginning of the CSV representation.
 9 |     ///
FoundationEssentials.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
[7/44] Compiling CodableCSV WriterInference.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 5 |     ///
 6 |     /// If no encoding is provided, UTF8 is presumed unless the CSV writer points to a file, in which case that file encoding will be used.
 7 |     public var encoding: String.Encoding?
   |                                 `- warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 8 |     /// Indicates whether a [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) will be included at the beginning of the CSV representation.
 9 |     ///
FoundationEssentials.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
[8/44] Compiling CodableCSV WriterInternals.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 5 |     ///
 6 |     /// If no encoding is provided, UTF8 is presumed unless the CSV writer points to a file, in which case that file encoding will be used.
 7 |     public var encoding: String.Encoding?
   |                                 `- warning: cannot use struct 'Encoding' here; 'FoundationEssentials' was not imported by this file
 8 |     /// Indicates whether a [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) will be included at the beginning of the CSV representation.
 9 |     ///
FoundationEssentials.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
[9/44] Compiling CodableCSV Delimiter.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |   /// - parameter type: The type of the value to decode from the supplied file.
 36 |   /// - parameter data: The data blob representing a CSV file.
 37 |   open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 38 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 39 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 45 |   /// - parameter type: The type of the value to decode from the supplied file.
 46 |   /// - parameter string: A Swift string representing a CSV file.
 47 |   open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 48 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 49 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 55 |   /// - parameter type: The type of the value to decode from the supplied file.
 56 |   /// - parameter url: The URL pointing to the file to decode.
 57 |   open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 58 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 59 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 65 |   /// - parameter type: The type of the value to decode from the supplied file.
 66 |   /// - parameter stream: The input stream providing the raw bytes.
 67 |   open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 68 |     let reader = try CSVReader(input: stream, configuration: self._configuration.readerConfiguration)
 69 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 77 |   /// - parameter data: The data blob representing a CSV file.
 78 |   /// - throws: `CSVError<CSVReader>` exclusively.
 79 |   open func lazy(from data: Data) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 80 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 81 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 86 |   /// - parameter string: A Swift string representing a CSV file.
 87 |   /// - throws: `CSVError<CSVReader>` exclusively.
 88 |   open func lazy(from string: String) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 89 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 90 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 95 |   /// - parameter url: The URL pointing to the file to decode.
 96 |   /// - throws: `CSVError<CSVReader>` exclusively.
 97 |   open func lazy(from url: URL) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 98 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 99 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
[10/44] Compiling CodableCSV Error.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |   /// - parameter type: The type of the value to decode from the supplied file.
 36 |   /// - parameter data: The data blob representing a CSV file.
 37 |   open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 38 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 39 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 45 |   /// - parameter type: The type of the value to decode from the supplied file.
 46 |   /// - parameter string: A Swift string representing a CSV file.
 47 |   open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 48 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 49 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 55 |   /// - parameter type: The type of the value to decode from the supplied file.
 56 |   /// - parameter url: The URL pointing to the file to decode.
 57 |   open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 58 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 59 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 65 |   /// - parameter type: The type of the value to decode from the supplied file.
 66 |   /// - parameter stream: The input stream providing the raw bytes.
 67 |   open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 68 |     let reader = try CSVReader(input: stream, configuration: self._configuration.readerConfiguration)
 69 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 77 |   /// - parameter data: The data blob representing a CSV file.
 78 |   /// - throws: `CSVError<CSVReader>` exclusively.
 79 |   open func lazy(from data: Data) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 80 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 81 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 86 |   /// - parameter string: A Swift string representing a CSV file.
 87 |   /// - throws: `CSVError<CSVReader>` exclusively.
 88 |   open func lazy(from string: String) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 89 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 90 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 95 |   /// - parameter url: The URL pointing to the file to decode.
 96 |   /// - throws: `CSVError<CSVReader>` exclusively.
 97 |   open func lazy(from url: URL) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 98 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 99 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
[11/44] Compiling CodableCSV Strategy.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |   /// - parameter type: The type of the value to decode from the supplied file.
 36 |   /// - parameter data: The data blob representing a CSV file.
 37 |   open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 38 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 39 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 45 |   /// - parameter type: The type of the value to decode from the supplied file.
 46 |   /// - parameter string: A Swift string representing a CSV file.
 47 |   open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 48 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 49 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 55 |   /// - parameter type: The type of the value to decode from the supplied file.
 56 |   /// - parameter url: The URL pointing to the file to decode.
 57 |   open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 58 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 59 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 65 |   /// - parameter type: The type of the value to decode from the supplied file.
 66 |   /// - parameter stream: The input stream providing the raw bytes.
 67 |   open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 68 |     let reader = try CSVReader(input: stream, configuration: self._configuration.readerConfiguration)
 69 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 77 |   /// - parameter data: The data blob representing a CSV file.
 78 |   /// - throws: `CSVError<CSVReader>` exclusively.
 79 |   open func lazy(from data: Data) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 80 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 81 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 86 |   /// - parameter string: A Swift string representing a CSV file.
 87 |   /// - throws: `CSVError<CSVReader>` exclusively.
 88 |   open func lazy(from string: String) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 89 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 90 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 95 |   /// - parameter url: The URL pointing to the file to decode.
 96 |   /// - throws: `CSVError<CSVReader>` exclusively.
 97 |   open func lazy(from url: URL) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 98 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 99 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
[12/44] Compiling CodableCSV Utils.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |   /// - parameter type: The type of the value to decode from the supplied file.
 36 |   /// - parameter data: The data blob representing a CSV file.
 37 |   open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 38 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 39 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 45 |   /// - parameter type: The type of the value to decode from the supplied file.
 46 |   /// - parameter string: A Swift string representing a CSV file.
 47 |   open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 48 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 49 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 55 |   /// - parameter type: The type of the value to decode from the supplied file.
 56 |   /// - parameter url: The URL pointing to the file to decode.
 57 |   open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 58 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 59 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 65 |   /// - parameter type: The type of the value to decode from the supplied file.
 66 |   /// - parameter stream: The input stream providing the raw bytes.
 67 |   open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 68 |     let reader = try CSVReader(input: stream, configuration: self._configuration.readerConfiguration)
 69 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 77 |   /// - parameter data: The data blob representing a CSV file.
 78 |   /// - throws: `CSVError<CSVReader>` exclusively.
 79 |   open func lazy(from data: Data) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 80 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 81 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 86 |   /// - parameter string: A Swift string representing a CSV file.
 87 |   /// - throws: `CSVError<CSVReader>` exclusively.
 88 |   open func lazy(from string: String) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 89 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 90 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 95 |   /// - parameter url: The URL pointing to the file to decode.
 96 |   /// - throws: `CSVError<CSVReader>` exclusively.
 97 |   open func lazy(from url: URL) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 98 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 99 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
[13/44] Compiling CodableCSV CodingKey.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |   /// - parameter type: The type of the value to decode from the supplied file.
 36 |   /// - parameter data: The data blob representing a CSV file.
 37 |   open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 38 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 39 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 45 |   /// - parameter type: The type of the value to decode from the supplied file.
 46 |   /// - parameter string: A Swift string representing a CSV file.
 47 |   open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 48 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 49 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 55 |   /// - parameter type: The type of the value to decode from the supplied file.
 56 |   /// - parameter url: The URL pointing to the file to decode.
 57 |   open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 58 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 59 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 65 |   /// - parameter type: The type of the value to decode from the supplied file.
 66 |   /// - parameter stream: The input stream providing the raw bytes.
 67 |   open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 68 |     let reader = try CSVReader(input: stream, configuration: self._configuration.readerConfiguration)
 69 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 77 |   /// - parameter data: The data blob representing a CSV file.
 78 |   /// - throws: `CSVError<CSVReader>` exclusively.
 79 |   open func lazy(from data: Data) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 80 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 81 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 86 |   /// - parameter string: A Swift string representing a CSV file.
 87 |   /// - throws: `CSVError<CSVReader>` exclusively.
 88 |   open func lazy(from string: String) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 89 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 90 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 95 |   /// - parameter url: The URL pointing to the file to decode.
 96 |   /// - throws: `CSVError<CSVReader>` exclusively.
 97 |   open func lazy(from url: URL) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 98 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 99 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
[14/44] Compiling CodableCSV Decoder.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |   /// - parameter type: The type of the value to decode from the supplied file.
 36 |   /// - parameter data: The data blob representing a CSV file.
 37 |   open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 38 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 39 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 45 |   /// - parameter type: The type of the value to decode from the supplied file.
 46 |   /// - parameter string: A Swift string representing a CSV file.
 47 |   open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 48 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 49 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 55 |   /// - parameter type: The type of the value to decode from the supplied file.
 56 |   /// - parameter url: The URL pointing to the file to decode.
 57 |   open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 58 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 59 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 65 |   /// - parameter type: The type of the value to decode from the supplied file.
 66 |   /// - parameter stream: The input stream providing the raw bytes.
 67 |   open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 68 |     let reader = try CSVReader(input: stream, configuration: self._configuration.readerConfiguration)
 69 |     return try withExtendedLifetime(ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 77 |   /// - parameter data: The data blob representing a CSV file.
 78 |   /// - throws: `CSVError<CSVReader>` exclusively.
 79 |   open func lazy(from data: Data) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 80 |     let reader = try CSVReader(input: data, configuration: self._configuration.readerConfiguration)
 81 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 86 |   /// - parameter string: A Swift string representing a CSV file.
 87 |   /// - throws: `CSVError<CSVReader>` exclusively.
 88 |   open func lazy(from string: String) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 89 |     let reader = try CSVReader(input: string, configuration: self._configuration.readerConfiguration)
 90 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 95 |   /// - parameter url: The URL pointing to the file to decode.
 96 |   /// - throws: `CSVError<CSVReader>` exclusively.
 97 |   open func lazy(from url: URL) throws -> Lazy {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 98 |     let reader = try CSVReader(input: url, configuration: self._configuration.readerConfiguration)
 99 |     let source = ShadowDecoder.Source(reader: reader, configuration: self._configuration, userInfo: self.userInfo)
[15/44] Compiling CodableCSV DecoderConfiguration.swift
[16/44] Compiling CodableCSV DecoderLazy.swift
[17/44] Compiling CodableCSV KeyedDecodingContainer.swift
[18/44] Compiling CodableCSV SingleValueDecodingContainer.swift
[19/44] Compiling CodableCSV UnkeyedDecodingContainer.swift
[20/44] Compiling CodableCSV ShadowEncoder.swift
[21/44] Compiling CodableCSV Sink.swift
[22/44] Compiling CodableCSV SinkBuffer.swift
[23/44] Compiling CodableCSV BOM.swift
[24/44] Compiling CodableCSV Reader.swift
[25/44] Compiling CodableCSV ShadowDecoder.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 36 |   /// - parameter type: The Swift type for a data blob.
 37 |   /// - returns: `Data` blob with the CSV representation of `value`.
 38 |   open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 39 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 40 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 49 |   /// - parameter type: The Swift type for a string.
 50 |   /// - returns: `String` with the CSV representation of `value`.
 51 |   open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 52 |     let data = try self.encode(value, into: Data.self)
 53 |     let encoding = self._configuration.writerConfiguration.encoding ?? .utf8
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 59 |   /// - parameter fileURL: The file receiving the encoded values.
 60 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 61 |   open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 62 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 63 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 72 |   /// - parameter type: The Swift type for a data blob.
 73 |   /// - returns: Instance used for _on demand_ encoding.
 74 |   open func lazy(into type: Data.Type) throws -> Lazy<Data> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 75 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 76 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 81 |   /// - parameter type: The Swift type for a data blob.
 82 |   /// - returns: Instance used for _on demand_ encoding.
 83 |   open func lazy(into type: String.Type) throws -> Lazy<String> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 84 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 85 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 91 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 92 |   /// - returns: Instance used for _on demand_ encoding.
 93 |   open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 94 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 95 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
[26/44] Compiling CodableCSV Source.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 36 |   /// - parameter type: The Swift type for a data blob.
 37 |   /// - returns: `Data` blob with the CSV representation of `value`.
 38 |   open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 39 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 40 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 49 |   /// - parameter type: The Swift type for a string.
 50 |   /// - returns: `String` with the CSV representation of `value`.
 51 |   open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 52 |     let data = try self.encode(value, into: Data.self)
 53 |     let encoding = self._configuration.writerConfiguration.encoding ?? .utf8
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 59 |   /// - parameter fileURL: The file receiving the encoded values.
 60 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 61 |   open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 62 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 63 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 72 |   /// - parameter type: The Swift type for a data blob.
 73 |   /// - returns: Instance used for _on demand_ encoding.
 74 |   open func lazy(into type: Data.Type) throws -> Lazy<Data> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 75 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 76 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 81 |   /// - parameter type: The Swift type for a data blob.
 82 |   /// - returns: Instance used for _on demand_ encoding.
 83 |   open func lazy(into type: String.Type) throws -> Lazy<String> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 84 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 85 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 91 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 92 |   /// - returns: Instance used for _on demand_ encoding.
 93 |   open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 94 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 95 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
[27/44] Compiling CodableCSV SourceBuffer.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 36 |   /// - parameter type: The Swift type for a data blob.
 37 |   /// - returns: `Data` blob with the CSV representation of `value`.
 38 |   open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 39 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 40 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 49 |   /// - parameter type: The Swift type for a string.
 50 |   /// - returns: `String` with the CSV representation of `value`.
 51 |   open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 52 |     let data = try self.encode(value, into: Data.self)
 53 |     let encoding = self._configuration.writerConfiguration.encoding ?? .utf8
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 59 |   /// - parameter fileURL: The file receiving the encoded values.
 60 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 61 |   open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 62 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 63 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 72 |   /// - parameter type: The Swift type for a data blob.
 73 |   /// - returns: Instance used for _on demand_ encoding.
 74 |   open func lazy(into type: Data.Type) throws -> Lazy<Data> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 75 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 76 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 81 |   /// - parameter type: The Swift type for a data blob.
 82 |   /// - returns: Instance used for _on demand_ encoding.
 83 |   open func lazy(into type: String.Type) throws -> Lazy<String> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 84 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 85 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 91 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 92 |   /// - returns: Instance used for _on demand_ encoding.
 93 |   open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 94 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 95 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
[28/44] Compiling CodableCSV Encoder.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 36 |   /// - parameter type: The Swift type for a data blob.
 37 |   /// - returns: `Data` blob with the CSV representation of `value`.
 38 |   open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 39 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 40 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 49 |   /// - parameter type: The Swift type for a string.
 50 |   /// - returns: `String` with the CSV representation of `value`.
 51 |   open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 52 |     let data = try self.encode(value, into: Data.self)
 53 |     let encoding = self._configuration.writerConfiguration.encoding ?? .utf8
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 59 |   /// - parameter fileURL: The file receiving the encoded values.
 60 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 61 |   open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 62 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 63 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 72 |   /// - parameter type: The Swift type for a data blob.
 73 |   /// - returns: Instance used for _on demand_ encoding.
 74 |   open func lazy(into type: Data.Type) throws -> Lazy<Data> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 75 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 76 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 81 |   /// - parameter type: The Swift type for a data blob.
 82 |   /// - returns: Instance used for _on demand_ encoding.
 83 |   open func lazy(into type: String.Type) throws -> Lazy<String> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 84 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 85 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 91 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 92 |   /// - returns: Instance used for _on demand_ encoding.
 93 |   open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 94 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 95 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
[29/44] Compiling CodableCSV EncoderConfiguration.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 36 |   /// - parameter type: The Swift type for a data blob.
 37 |   /// - returns: `Data` blob with the CSV representation of `value`.
 38 |   open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 39 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 40 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 49 |   /// - parameter type: The Swift type for a string.
 50 |   /// - returns: `String` with the CSV representation of `value`.
 51 |   open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 52 |     let data = try self.encode(value, into: Data.self)
 53 |     let encoding = self._configuration.writerConfiguration.encoding ?? .utf8
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 59 |   /// - parameter fileURL: The file receiving the encoded values.
 60 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 61 |   open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 62 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 63 |     try withExtendedLifetime(try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)) {
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 72 |   /// - parameter type: The Swift type for a data blob.
 73 |   /// - returns: Instance used for _on demand_ encoding.
 74 |   open func lazy(into type: Data.Type) throws -> Lazy<Data> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 75 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 76 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 81 |   /// - parameter type: The Swift type for a data blob.
 82 |   /// - returns: Instance used for _on demand_ encoding.
 83 |   open func lazy(into type: String.Type) throws -> Lazy<String> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 84 |     let writer = try CSVWriter(configuration: self._configuration.writerConfiguration)
 85 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 91 |   /// - parameter append: In case an existing file is under the given URL, this Boolean indicates that the information will be appended to the file (`true`), or the file will be overwritten (`false`).
 92 |   /// - returns: Instance used for _on demand_ encoding.
 93 |   open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 94 |     let writer = try CSVWriter(fileURL: fileURL, append: append, configuration: self._configuration.writerConfiguration)
 95 |     let sink = try ShadowEncoder.Sink(writer: writer, configuration: self._configuration, userInfo: self.userInfo)
[30/44] Compiling CodableCSV EncoderLazy.swift
[31/44] Compiling CodableCSV InvalidEncodingContainer.swift
[32/44] Compiling CodableCSV KeyedEncodingContainer.swift
[33/44] Compiling CodableCSV SingleValueEncodingContainer.swift
[34/44] Compiling CodableCSV UnkeyedEncodingContainer.swift
[35/44] Compiling CodableCSV ReaderEncodings.swift
[36/44] Compiling CodableCSV ReaderInference.swift
[37/44] Compiling CodableCSV ReaderInternals.swift
[38/44] Compiling CodableCSV Writer.swift
[39/44] Compiling CodableCSV WriterAPI.swift
[40/44] Compiling CodableCSV ReaderAPI.swift
[41/44] Compiling CodableCSV ReaderCollections.swift
[42/44] Compiling CodableCSV ReaderConfiguration.swift
[43/44] Compiling CodableCSV ReaderBuffer.swift
[44/44] Compiling CodableCSV ReaderDecoder.swift
Build complete! (22.88s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CodableCSV",
  "name" : "CodableCSV",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "CodableCSV",
      "targets" : [
        "CodableCSV"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CodableCSVTests",
      "module_type" : "SwiftTarget",
      "name" : "CodableCSVTests",
      "path" : "tests",
      "sources" : [
        "declarative/CodableFloatingPointTests.swift",
        "declarative/CodableNumericBoolTests.swift",
        "declarative/DecodingBadInputTests.swift",
        "declarative/DecodingRegularUsageTests.swift",
        "declarative/DecodingSinglesTests.swift",
        "declarative/DecodingWrappersTests.swift",
        "declarative/EncodingLazyTests.swift",
        "declarative/EncodingOptionalsTests.swift",
        "declarative/EncodingRegularUsageTests.swift",
        "imperative/ReaderBadInputTests.swift",
        "imperative/ReaderCollectionsTests.swift",
        "imperative/ReaderTests.swift",
        "imperative/WriterTests.swift"
      ],
      "target_dependencies" : [
        "CodableCSV"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CodableCSVBenchmarks",
      "module_type" : "SwiftTarget",
      "name" : "CodableCSVBenchmarks",
      "path" : "benchmarks",
      "sources" : [
        "PerformanceTests.swift"
      ],
      "target_dependencies" : [
        "CodableCSV"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CodableCSV",
      "module_type" : "SwiftTarget",
      "name" : "CodableCSV",
      "path" : "sources",
      "product_memberships" : [
        "CodableCSV"
      ],
      "sources" : [
        "Delimiter.swift",
        "Error.swift",
        "Strategy.swift",
        "Utils.swift",
        "declarative/CodingKey.swift",
        "declarative/decodable/Decoder.swift",
        "declarative/decodable/DecoderConfiguration.swift",
        "declarative/decodable/DecoderLazy.swift",
        "declarative/decodable/containers/KeyedDecodingContainer.swift",
        "declarative/decodable/containers/SingleValueDecodingContainer.swift",
        "declarative/decodable/containers/UnkeyedDecodingContainer.swift",
        "declarative/decodable/internal/ShadowDecoder.swift",
        "declarative/decodable/internal/Source.swift",
        "declarative/decodable/internal/SourceBuffer.swift",
        "declarative/encodable/Encoder.swift",
        "declarative/encodable/EncoderConfiguration.swift",
        "declarative/encodable/EncoderLazy.swift",
        "declarative/encodable/containers/InvalidEncodingContainer.swift",
        "declarative/encodable/containers/KeyedEncodingContainer.swift",
        "declarative/encodable/containers/SingleValueEncodingContainer.swift",
        "declarative/encodable/containers/UnkeyedEncodingContainer.swift",
        "declarative/encodable/internal/ShadowEncoder.swift",
        "declarative/encodable/internal/Sink.swift",
        "declarative/encodable/internal/SinkBuffer.swift",
        "imperative/BOM.swift",
        "imperative/reader/Reader.swift",
        "imperative/reader/ReaderAPI.swift",
        "imperative/reader/ReaderCollections.swift",
        "imperative/reader/ReaderConfiguration.swift",
        "imperative/reader/internal/ReaderBuffer.swift",
        "imperative/reader/internal/ReaderDecoder.swift",
        "imperative/reader/internal/ReaderEncodings.swift",
        "imperative/reader/internal/ReaderInference.swift",
        "imperative/reader/internal/ReaderInternals.swift",
        "imperative/writer/Writer.swift",
        "imperative/writer/WriterAPI.swift",
        "imperative/writer/WriterConfiguration.swift",
        "imperative/writer/internal/WriterEncoder.swift",
        "imperative/writer/internal/WriterEncoding.swift",
        "imperative/writer/internal/WriterInference.swift",
        "imperative/writer/internal/WriterInternals.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.