Cormac Relf
Cormac Relf
Edit, figured out what that was and documented it in the reindeer.toml. Mismatch between prelude's platform names and the ones in this file.
Pinging maybe @dtolnay again? - There's a Meta check failing for a bad file name that can't be imported. Which file(s) and how can I fix? - LMK if you...
@dtolnay Seems about right with the replacement. I think this is due to cargo running without the chdir it had, so probably a replacement or toml_edit is the best you...
Basically all of the methods on cmd_args are migrating to kwargs, so it's `cmd_args(artifact, parent = 1)`, or `parent=2` to go two levels up. Leave the issue open because the...
I think the limitation is that someone needs to design a type to hold the parent directory. It can't be Artifact. If you have a projected artifact, the parent directory...
Your example is actually really close. Your example code passes a directory to srcs, which is (I believe) symlinked into a "_srcs" directory in the rule internals. The go binary...
No. Glob reads files from the directory the BUCK file is in. It can't be repurposed to read files from an archive. Think of glob as syntax sugar for reading...
@thoughtpolice the upstream library should just use [`std::module_path!`](https://doc.rust-lang.org/std/macro.module_path.html) instead. It's a compiler builtin, no environment variables. It returns e.g. `mycrate::module::one` which is probably more useful for a fault injection library...
I just tested `println!("{}", module_path!());` in a simple rust_binary target and it prints out the target name.
Fantastic. Thank you!