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?