到目前为止,我看到了三个...
[dependencies]
crate = "1.0.0" # I think this is an exact version match
crate = "^1.0.0" # I think this means "use that latest 1.x.x"
crate = "*" # I think this means "use the latest"
我很想知道如何使用依赖列表。如果有一个权威的资源来记录依赖项的不同语法,那就太好了。