The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AMF, reference master (065610), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 12:38:32 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mavisbroadcast/amf.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mavisbroadcast/amf
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 0656105 Upgrade to Swift 5.0
Cloned https://github.com/mavisbroadcast/amf.git
Revision (git rev-parse @):
065610534faea6efc549b0bb20fadbb0633844a7
SUCCESS checkout https://github.com/mavisbroadcast/amf.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "amf",
      "name": "AMF",
      "url": "https://github.com/mavisbroadcast/amf.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/amf",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/mavisbroadcast/amf.git
[1/588] Fetching amf
Fetched https://github.com/mavisbroadcast/amf.git from cache (0.74s)
Creating working copy for https://github.com/mavisbroadcast/amf.git
Working copy of https://github.com/mavisbroadcast/amf.git resolved at master (0656105)
warning: '.resolve-product-dependencies': dependency 'amf' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/mavisbroadcast/amf.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/28] Emitting module AMF
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Decoder/AMF0Decoder.swift:75:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 73 | }
 74 |
 75 | protocol AMF0DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 76 |     var codingPath: [CodingKey] { get set }
 77 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0Encoder.swift:83:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
81 | }
82 |
83 | protocol AMF0EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
84 |     var data: Data { get }
85 | }
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:128:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
126 |     }
127 |
128 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
129 |         try checkCanEncode(value: value)
130 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Decoder/AMF3Decoder.swift:73:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 71 | }
 72 |
 73 | protocol AMF3DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 74 |     var codingPath: [CodingKey] { get set }
 75 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3Encoder.swift:72:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
70 | }
71 |
72 | protocol AMF3EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
73 |     var data: Data { get }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:123:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
121 |     }
122 |
123 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
124 |         data.append(contentsOf: value)
125 |     }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:127:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
125 |     }
126 |
127 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
128 |         try checkCanEncode(value: value)
129 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: UInt128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[4/30] Compiling AMF Endianness.swift
[5/30] Compiling AMF FixedWidthInteger+Bytes.swift
[6/30] Compiling AMF AMF0UnkeyedEncodingContainer.swift
[7/30] Compiling AMF AMF3Markers.swift
[8/30] Compiling AMF AMF3ReferenceTable.swift
[9/30] Compiling AMF AMF3KeyedEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:123:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
121 |     }
122 |
123 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
124 |         data.append(contentsOf: value)
125 |     }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:127:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
125 |     }
126 |
127 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
128 |         try checkCanEncode(value: value)
129 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: UInt128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[10/30] Compiling AMF AMF3SingleValueEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:123:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
121 |     }
122 |
123 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
124 |         data.append(contentsOf: value)
125 |     }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:127:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
125 |     }
126 |
127 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
128 |         try checkCanEncode(value: value)
129 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: UInt128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[11/30] Compiling AMF AMF3UnkeyedEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:123:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
121 |     }
122 |
123 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
124 |         data.append(contentsOf: value)
125 |     }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:127:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
125 |     }
126 |
127 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
128 |         try checkCanEncode(value: value)
129 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: UInt128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[12/30] Compiling AMF AMF3SingleValueDecodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3Encoder.swift:72:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
70 | }
71 |
72 | protocol AMF3EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
73 |     var data: Data { get }
74 | }
[13/30] Compiling AMF AMF3UnkeyedDecodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3Encoder.swift:72:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
70 | }
71 |
72 | protocol AMF3EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
73 |     var data: Data { get }
74 | }
[14/30] Compiling AMF AMF3Encoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3Encoder.swift:72:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
70 | }
71 |
72 | protocol AMF3EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
73 |     var data: Data { get }
74 | }
[15/30] Compiling AMF UInt32+UInt29.swift
[16/30] Compiling AMF AMFEncoding.swift
[17/30] Compiling AMF AMF0Markers.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Decoder/AMF0Decoder.swift:75:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 73 | }
 74 |
 75 | protocol AMF0DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 76 |     var codingPath: [CodingKey] { get set }
 77 |
[18/30] Compiling AMF AMF0ReferenceTable.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Decoder/AMF0Decoder.swift:75:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 73 | }
 74 |
 75 | protocol AMF0DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 76 |     var codingPath: [CodingKey] { get set }
 77 |
[19/30] Compiling AMF AMF0Decoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Decoder/AMF0Decoder.swift:75:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 73 | }
 74 |
 75 | protocol AMF0DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 76 |     var codingPath: [CodingKey] { get set }
 77 |
[20/30] Compiling AMF AMF0KeyedDecodingContainer.swift
[21/30] Compiling AMF AMF0SingleValueDecodingContainer.swift
[22/30] Compiling AMF AMF0UnkeyedDecodingContainer.swift
[23/30] Compiling AMF AMF0Encoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0Encoder.swift:83:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
81 | }
82 |
83 | protocol AMF0EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
84 |     var data: Data { get }
85 | }
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:128:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
126 |     }
127 |
128 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
129 |         try checkCanEncode(value: value)
130 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[24/30] Compiling AMF AMF0KeyedEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0Encoder.swift:83:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
81 | }
82 |
83 | protocol AMF0EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
84 |     var data: Data { get }
85 | }
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:128:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
126 |     }
127 |
128 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
129 |         try checkCanEncode(value: value)
130 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[25/30] Compiling AMF AMF0SingleValueEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0Encoder.swift:83:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
81 | }
82 |
83 | protocol AMF0EncodingContainer: class {
   |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
84 |     var data: Data { get }
85 | }
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:128:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
126 |     }
127 |
128 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
129 |         try checkCanEncode(value: value)
130 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[26/30] Compiling AMF AnyCodingKey.swift
[27/30] Compiling AMF Box.swift
[28/30] Compiling AMF AMF3TraitsInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Decoder/AMF3Decoder.swift:73:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 71 | }
 72 |
 73 | protocol AMF3DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 74 |     var codingPath: [CodingKey] { get set }
 75 |
[29/30] Compiling AMF AMF3Decoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Decoder/AMF3Decoder.swift:73:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 71 | }
 72 |
 73 | protocol AMF3DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 74 |     var codingPath: [CodingKey] { get set }
 75 |
[30/30] Compiling AMF AMF3KeyedDecodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Decoder/AMF3Decoder.swift:73:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 71 | }
 72 |
 73 | protocol AMF3DecodingContainer: class {
    |                                 `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 74 |     var codingPath: [CodingKey] { get set }
 75 |
Build complete! (5.25s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AMF",
  "name" : "AMF",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "AMF",
      "targets" : [
        "AMF"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AMFTests",
      "module_type" : "SwiftTarget",
      "name" : "AMFTests",
      "path" : "Tests",
      "sources" : [
        "AMF0Tests/AMF0DecodingTests.swift",
        "AMF0Tests/AMF0EncodingTests.swift",
        "AMF0Tests/AMF0PerformanceTests.swift",
        "AMF0Tests/AMF0RoundTripTests.swift",
        "AMF0Tests/AMFCommand.swift",
        "AMF3Tests/AMF3DecodingTests.swift",
        "AMF3Tests/AMF3EncodingTests.swift",
        "AMF3Tests/AMF3PerformanceTests.swift",
        "AMF3Tests/AMF3RoundTripTests.swift",
        "AMF3Tests/UInt32+UInt29Tests.swift",
        "Shared Sources/Airport.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "AMF"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AMF",
      "module_type" : "SwiftTarget",
      "name" : "AMF",
      "path" : "Sources",
      "product_memberships" : [
        "AMF"
      ],
      "sources" : [
        "AMF0/AMF0Markers.swift",
        "AMF0/AMF0ReferenceTable.swift",
        "AMF0/Decoder/AMF0Decoder.swift",
        "AMF0/Decoder/AMF0KeyedDecodingContainer.swift",
        "AMF0/Decoder/AMF0SingleValueDecodingContainer.swift",
        "AMF0/Decoder/AMF0UnkeyedDecodingContainer.swift",
        "AMF0/Encoder/AMF0Encoder.swift",
        "AMF0/Encoder/AMF0KeyedEncodingContainer.swift",
        "AMF0/Encoder/AMF0SingleValueEncodingContainer.swift",
        "AMF0/Encoder/AMF0UnkeyedEncodingContainer.swift",
        "AMF3/AMF3Markers.swift",
        "AMF3/AMF3ReferenceTable.swift",
        "AMF3/AMF3TraitsInfo.swift",
        "AMF3/Decoder/AMF3Decoder.swift",
        "AMF3/Decoder/AMF3KeyedDecodingContainer.swift",
        "AMF3/Decoder/AMF3SingleValueDecodingContainer.swift",
        "AMF3/Decoder/AMF3UnkeyedDecodingContainer.swift",
        "AMF3/Encoder/AMF3Encoder.swift",
        "AMF3/Encoder/AMF3KeyedEncodingContainer.swift",
        "AMF3/Encoder/AMF3SingleValueEncodingContainer.swift",
        "AMF3/Encoder/AMF3UnkeyedEncodingContainer.swift",
        "AMF3/UInt32+UInt29.swift",
        "AMFEncoding.swift",
        "AnyCodingKey.swift",
        "Box.swift",
        "Endianness.swift",
        "FixedWidthInteger+Bytes.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.