bevy-assets icon indicating copy to clipboard operation
bevy-assets copied to clipboard

CI is failing with broken feature gates

Open alice-i-cecile opened this issue 5 months ago • 2 comments

See https://github.com/bevyengine/bevy-assets/actions/runs/16264269737/job/45916312327?pr=541

Seems to have been a latent bug that was detected by a new Rust update.

alice-i-cecile avatar Jul 14 '25 17:07 alice-i-cecile

I think this just dependency breakage.

console released 0.16 with breaking changes, and indicatif 0.16.2 has a very wide dependency specification for that: >=0.9.1, <1.0.0".

console v0.16.0
└── indicatif v0.16.2
    └── cached-path v0.5.3
        └── cratesio-dbdump-csvtab v0.2.2
            └── generate-assets v0.0.0

It looks like this should be fixed by upgrading cached-path in cratesio-dbdump-csvtab. They recently upgraded their version of indicatif to fix the same breakage.

Or maybe we can pin console 0.15.11.

rparrett avatar Jul 14 '25 20:07 rparrett

Opened PR upstream: https://github.com/alyti/cratesio-dbdump-csvtab/pull/2

rparrett avatar Jul 15 '25 13:07 rparrett