Age | Commit message (Collapse) | Author |
|
As more and more build scripts use Cargo.toml, routinely provide
these files as data for build scripts.
|
|
|
|
...in a directory with the same name of the crate. If crate "foo",
version 1.0.0 is staged in directory "/dir/bar", it will reported in
the output of `cargo metadata` as
path+file:///dir/bar#foo@1.0.0
However, if the same crate "foo" is staged is "/dir/foo", `cargo
metadata` will report
path+file:///dir/foo#1.0.0
|
|
...to simplify the transition of a Rust-only Cargo-based project.
|
|
... to have a more predictable result, allowing also for more meaningful
diffs on updates.
|
|
... to avoid clashes with the existing target files when importing
into a larger project.
|
|
... now that the rules are published.
|
|
Co-authored-by: Klaus Aehlig <klaus.aehlig@huawei.com>
|