The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Phantomlike with Swift 5.10 for macOS (SPM).

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.29.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/adamnemecek/phantomlike.git
Reference: master
Initialized empty Git repository in /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.git/
From https://github.com/adamnemecek/phantomlike
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 648b9b5 Update README.md
Cloned https://github.com/adamnemecek/phantomlike.git
Revision (git rev-parse @):
648b9b54b7adfadf74f4402e9ab1f2c756021329
SUCCESS checkout https://github.com/adamnemecek/phantomlike.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             5.10
Building package at path:  $workDir
https://github.com/adamnemecek/phantomlike.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0-Beta.2.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--423B1241ED78D482.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/6] Emitting module Phantomlike
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:69:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80) {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: type 'FloatingValue<Storage, Unit>' does not conform to protocol 'FloatingPoint'
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: 'FloatingPoint' requires the types 'FloatingValue<Storage, Unit>' and 'FloatingValue<Storage, Unit>.Magnitude' (aka 'Storage') be equivalent
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: note: requirement specified as 'Self' == 'Self.Magnitude' [with Self = FloatingValue<Storage, Unit>]
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:284:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'FloatingValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:9:15: error: type 'SignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct SignedValue<Storage: SignedInteger & FixedWidthInteger, Unit> : SignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'SignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:9:15: error: type 'UnsignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct UnsignedValue<Storage: UnsignedInteger & FixedWidthInteger, Unit> : UnsignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'UnsignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
[4/6] Compiling Phantomlike SignedValue.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:9:15: error: type 'SignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct SignedValue<Storage: SignedInteger & FixedWidthInteger, Unit> : SignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'SignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
[5/6] Compiling Phantomlike UnsignedValue.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:9:15: error: type 'UnsignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct UnsignedValue<Storage: UnsignedInteger & FixedWidthInteger, Unit> : UnsignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'UnsignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
[6/6] Compiling Phantomlike FloatingValue.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:69:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80) {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: type 'FloatingValue<Storage, Unit>' does not conform to protocol 'FloatingPoint'
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: 'FloatingPoint' requires the types 'FloatingValue<Storage, Unit>' and 'FloatingValue<Storage, Unit>.Magnitude' (aka 'Storage') be equivalent
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: note: requirement specified as 'Self' == 'Self.Magnitude' [with Self = FloatingValue<Storage, Unit>]
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:284:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'FloatingValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:70:20: error: no exact matches in call to initializer
        content = .init(value)
                   ^
Swift.BinaryFloatingPoint:5:5: note: candidate expects value of type 'Float' for parameter #1 (got 'Float80')
    init(_ value: Float)
    ^
Swift.BinaryFloatingPoint:6:5: note: candidate expects value of type 'Double' for parameter #1 (got 'Float80')
    init(_ value: Double)
    ^
Swift.FloatingPoint:5:5: note: candidate expects value of type 'Int' for parameter #1 (got 'Float80')
    init(_ value: Int)
    ^
error: fatalError
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version--423B1241ED78D482.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/5] Emitting module Phantomlike
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:69:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80) {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: type 'FloatingValue<Storage, Unit>' does not conform to protocol 'FloatingPoint'
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: 'FloatingPoint' requires the types 'FloatingValue<Storage, Unit>' and 'FloatingValue<Storage, Unit>.Magnitude' (aka 'Storage') be equivalent
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: note: requirement specified as 'Self' == 'Self.Magnitude' [with Self = FloatingValue<Storage, Unit>]
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:284:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'FloatingValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:9:15: error: type 'SignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct SignedValue<Storage: SignedInteger & FixedWidthInteger, Unit> : SignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'SignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:9:15: error: type 'UnsignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct UnsignedValue<Storage: UnsignedInteger & FixedWidthInteger, Unit> : UnsignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'UnsignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
[3/5] Compiling Phantomlike UnsignedValue.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:9:15: error: type 'UnsignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct UnsignedValue<Storage: UnsignedInteger & FixedWidthInteger, Unit> : UnsignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'UnsignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/UnsignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'UnsignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout UnsignedValue<Storage, Unit>, UnsignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
[4/5] Compiling Phantomlike FloatingValue.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:69:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80) {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: type 'FloatingValue<Storage, Unit>' does not conform to protocol 'FloatingPoint'
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: error: 'FloatingPoint' requires the types 'FloatingValue<Storage, Unit>' and 'FloatingValue<Storage, Unit>.Magnitude' (aka 'Storage') be equivalent
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:9:15: note: requirement specified as 'Self' == 'Self.Magnitude' [with Self = FloatingValue<Storage, Unit>]
public struct FloatingValue<Storage: BinaryFloatingPoint, Unit> : BinaryFloatingPoint, CustomStringConvertible {
              ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:284:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'FloatingValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/FloatingValue.swift:70:20: error: no exact matches in call to initializer
        content = .init(value)
                   ^
Swift.BinaryFloatingPoint:5:5: note: candidate expects value of type 'Float' for parameter #1 (got 'Float80')
    init(_ value: Float)
    ^
Swift.BinaryFloatingPoint:6:5: note: candidate expects value of type 'Double' for parameter #1 (got 'Float80')
    init(_ value: Double)
    ^
Swift.FloatingPoint:5:5: note: candidate expects value of type 'Int' for parameter #1 (got 'Float80')
    init(_ value: Int)
    ^
[5/5] Compiling Phantomlike SignedValue.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:9:15: error: type 'SignedValue<Storage, Unit>' does not conform to protocol 'BinaryInteger'
public struct SignedValue<Storage: SignedInteger & FixedWidthInteger, Unit> : SignedInteger, FixedWidthInteger {
              ^
Swift.SIMD:22:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func &= (a: inout Self, b: Self)
                       ^
Swift.SIMD:32:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func &= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:24:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func |= (a: inout Self, b: Self)
                       ^
Swift.SIMD:34:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func |= (a: inout Self, b: Self.Scalar)
                       ^
Swift.SIMD:23:24: note: candidate would match if 'SignedValue<Storage, Unit>' conformed to 'SIMD'
    public static func ^= (a: inout Self, b: Self)
                       ^
Swift.SIMD:33:24: note: candidate has non-matching type '<Self> (inout Self, Self.Scalar) -> ()'
    public static func ^= (a: inout Self, b: Self.Scalar)
                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Phantomlike/SignedValue.swift:73:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'SignedValue' to 'Hashable' by implementing 'hash(into:)' instead
    public var hashValue: Int {
               ^
Swift.BinaryInteger:26:17: note: protocol requires function '&=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func &= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:28:17: note: protocol requires function '|=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func |= (lhs: inout Self, rhs: Self)
                ^
Swift.BinaryInteger:30:17: note: protocol requires function '^=' with type '(inout SignedValue<Storage, Unit>, SignedValue<Storage, Unit>) -> ()'
    static func ^= (lhs: inout Self, rhs: Self)
                ^
error: fatalError
BUILD FAILURE 5.10 macosSpm