You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I downloaded the source, but I'm unable to build the game. First I got this error message on cargo build:
error: no matching package found
searched package name: `bevy-async-task`
perhaps you meant: bevy_async_task
location searched: registry `crates-io`
required by package `astratomic v0.2.0 (C:\Users\xxxxxx\projects\astratomic)`
I was able to get it to start building (cargo build) by changing the name of the package to bevy_async_task and changing the version number to 0.4.
Further down in the build process there is another error:
Compiling bevy-inspector-egui-derive v0.23.0
error[E0282]: type annotations needed for `Box<_>`
--> C:\Users\tp\.cargo\registry\src\index.crates.io-6f17d22bba15001f\time-0.3.34\src\format_description\parse\mod.rs:83:9
|
83 | let items = format_items
| ^^^^^
...
86 | Ok(items.into())
| ---- type must be known at this point
|
= note: this is an inference error on crate `time` caused by an API change in Rust 1.80.0; update `time` to version `>=0.3.35` by calling `cargo update`
So then I ran cargo update as suggested, and another cargo build. Now there are errors in compiling puffin_egui...
It seems I now opened up a Pandora's Box of dependency errors, and I could use some help with compiling and running the game... 😅
I'm currently on Rust (and cargo) version 1.83.0.
The text was updated successfully, but these errors were encountered:
I downloaded the source, but I'm unable to build the game. First I got this error message on
cargo build
:I was able to get it to start building (
cargo build
) by changing the name of the package tobevy_async_task
and changing the version number to0.4
.Further down in the build process there is another error:
So then I ran
cargo update
as suggested, and anothercargo build
. Now there are errors in compilingpuffin_egui
...It seems I now opened up a Pandora's Box of dependency errors, and I could use some help with compiling and running the game... 😅
I'm currently on Rust (and cargo) version
1.83.0
.The text was updated successfully, but these errors were encountered: