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'm building an application targeting macos and linux exclusively, however by default reindeer seems to solve Cargo dependencies like [target."cfg(windows)".dependencies.winapi-util] in walkdir.
These aren't causing a significant issue, but they are a bit of noise given my platform interests.
I believe I was able to fix some of this by explicitly declaring my platforms in reindeer.toml.
I'm building an application targeting macos and linux exclusively, however by default reindeer seems to solve Cargo dependencies like
[target."cfg(windows)".dependencies.winapi-util]
inwalkdir
.These aren't causing a significant issue, but they are a bit of noise given my platform interests.
I believe I was able to fix some of this by explicitly declaring my platforms in reindeer.toml.
Nevertheless, it appears that the
winapi-util
dependency is getting pulled.Is there a way to ensure that
cfg(windows)
will evaluate to false?The text was updated successfully, but these errors were encountered: