The company I am working for wants to introduce Rust into their own ecosystem.
However, they are using WithSecure security suite, and it flags almost every single Rust tool I want to install (cbindgen
, grcov
, etc.) independent on whether I compile them through cargo or download executables.
The only solution I found so far is to delete that software, which, in this context, is a no-go.
Another solution would be to whitelist required executables, but doing this for every single tool is painful, and would require everyone to install the tooling not from cargo, but from our private storage.
Usually it complains about build scripts, but not always, here is an example:
Maybe somebody had to deal with something similar, would be glad for your help.