pointfreeco / swift-custom-dump

A collection of tools for debugging, diffing, and testing your application's data structures.
MIT License
800 stars 89 forks source link

Xcode 13.2 Compile Error #32

Closed romero-ios closed 2 years ago

romero-ios commented 2 years ago

I have a project that depends on swift-composable-architecture which depends on this package. I am using the latest release, v0.30.0. After updating to Xcode 13.2 and doing a clean build, my project fails to compile.

Please refer to the screenshots for the issue I am seeing.

Screen Shot 2021-12-14 at 12 48 49 AM Screen Shot 2021-12-14 at 12 48 54 AM

The Package.swift for my project declares:

 platforms: [
    .iOS(.v15)
  ],

So I do not understand why I am encountering this issue.

stephencelis commented 2 years ago

Hi @romero-ios! Are you on the latest version of swift-custom-dump? I believe this is a bug in the new build system that we merged a workaround for: #30.

subdan commented 2 years ago

~I have the same issue on a release version.~

Updated to 0.3.0 and everything works as expected. 🎉

romero-ios commented 2 years ago

Updated to the latest package worked! Thanks @stephencelis