Is there a way to tell cargo to print its effective variables like target-dir?
I want to do something along the line of:
#!/bin/sh
BLDDIR="$(cargo what-is target-dir)"
cd mytest
cargo build --target <blah>
cp $BLDDIR/<blah>/mytest.wasm ../static/
I have target-dir set globally on some systems to build in a RAM drive, and on other systems I don't override the default -- so I need to be able to figure out where the targets end up for my script.