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 just built rusty-shooter on my machine. I think the setup could be simpler if the Cargo.toml file referenced a git repository (in addition to the version from crates.io) for dependencies instead of a path.
If all rg3d crates did this, we could just:
git clone https://github.com/mrDIMAS/rusty-shooter
cd rusty-shooter
cargo run --release
I'm afraid this won't work for development - I'm changing other rg3d-x libraries at the same time while I'm writing engine or game. The docs clearly tells that you can't have path and git at the same time. Correct me if I'm wrong.
We can add a simple shell/bat file for the of setup all repository, or using the git native function of subrepository ?
That can make it more simple to use
I just built rusty-shooter on my machine. I think the setup could be simpler if the
Cargo.toml
file referenced agit
repository (in addition to theversion
from crates.io) for dependencies instead of apath
.If all rg3d crates did this, we could just:
See cargo docs about multiple locations for a crate.
The text was updated successfully, but these errors were encountered: