#Version for git dependencies

5 messages · Page 1 of 1 (latest)

grand cobalt
#

I'm reading the cargo book for cargo.
for dependencies i get how they added clap and the version from crates.io. but why no version fro rand or bar?

Also what release is the getting by default on git, is it the latest or a stable one?

twilit yew
#

the versions numbers are for grabbing a specific version from crates.io

#

which doesn't really do much for git or path dependencies since they just grab whatever is there

grand cobalt
#

oh