Weihang Lo

Results 766 comments of Weihang Lo

As this is sort of a breaking change to an undocumented behavior that shouldn't have happened for a deprecated field, I'd like to start a poll. (not going to wait...

From the previous discussion , the team generally leans toward adding extra VCS support via some extension points in Cargo, to lighten the maintenance burden. Adding new features for existing...

> whether it ships with tools that do not appear in the minimal profile. That's a pretty fair point! Cargo also has no knowledge about [rustup profiles](https://rust-lang.github.io/rustup/concepts/profiles.html). At least Cargo...

Thanks for the report! `\projects\other\cxx\target\debug\build\cxx-test-suite-2dda1da2c847afa7\out\cxxbridge\crate\tests\ffi` is a symlink pointing to a directory. [According to Win32 API doc](https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-createsymboliclinka#remarks), symlinks created by `CreateSymbolicLinkA` should be removed by `RemoveDirectory` not `DeleteFile`. The fix...

When submitting a pull request, the first commit should be a test demonstrating the current “bad behavior”, followed by other commits fixing the bug and tests, so that we know...

Looks like you have a set of different configurations that need to be switched between. Instead of adding more configs to `[profile]` table, I might recommend using [`cargo --config `](https://doc.rust-lang.org/nightly/cargo/reference/config.html#command-line-overrides)...

You could also configure [`[alias]`](https://doc.rust-lang.org/nightly/cargo/reference/config.html#alias) to make it easier to switch with less typing.