rust-lang/docs.rs

My crate failed to build, not sure why

Closed this issue · 2 comments

Crate name

lightyear

Build failure link

https://docs.rs/crate/lightyear/0.21.0-rc.1/builds/2210125

Additional details

The logs don't mention much

Looking at the logs, the actual error is prefixed with [stderr]:

[INFO] [stderr] error: the package 'lightyear' does not contain this feature: lag_compensation

And looking at your Cargo.toml.orig, and specifically the docs.rs metadata, I can see that you want to enable a feature (lag_compensation) for the logs, but this feature doesn't exist.

cargo docs-rs can also help debugging these kinds of errors.

Thank you!