Austin Tasato
Austin Tasato
I was wondering; is there a future plan to use Silicon with a previously established unit testing framework, like Catch or Google Test? I've found that it's extremely helpful to...
It would be cool if we could use `cargo chef` to build unit or integration tests!
If you have a `lib.rs` and a `java_glue.rs.in`, this will not work: ```rs // lib.rs mod java_glue; pub enum RecursiveEnum { Null, S } #[derive(Debug, Clone, Default)] pub struct Lol...
If i'm not mistaken, the current dependency functions completely ignore relative path dependencies from the `Cargo.toml`. Is this true?
Sometimes `bench` targets are run in a different context than a regular unit test and integration test -- for example, you might have a benchmark test to be run separately...
This is especially relevant when trying to use `protoc` and `prost` libraries. While the `rust_library` and `rust_test` and `rust_binary` targets will succeed, the `docs` targets will fail.
Need to add trailing comma: ```skylark sha256 = "cd55a062e763b9349921f0f5db8c3933288dc8ba4f76dd9416aac68acee3cb94", ```
### Problem you are trying to solve When running a project, often times, one wants to use `nightly` features from `rustfmt`, while also keeping a `stable` version for builds +...
### Summary I was compiling recently on my 1.3k crate + dep repo that is 1 giant Rust workspace, and it would hang on some of these crates during our...