Brian Anderson
Brian Anderson
This crate can optionally enable `rayon`. Unfortunately we don't have guidelines on the proper way to do this. I'd suggest adding a "Parallelism" section to crate docs, and then writing...
cmake-rs tries to translate cargo settings to cmake settings, but there are two cases where the debuginfio settings are ignored. The first is opt-level=0 + debug=false. This picks the CMake...
The source code in this crate is derivative of LLVM's compiler-rt, the license of which is declared correctly in LICENSE.TXT, but not in Cargo.toml, and is the [NCSA license](https://opensource.org/licenses/NCSA) (similar...
From riscv32.rs: ``` intrinsics! { // Implementation from gcc // https://raw.githubusercontent.com/gcc-mirror/gcc/master/libgcc/config/epiphany/mulsi3.c pub extern "C" fn __mulsi3(a: u32, b: u32) -> u32 { let (mut a, mut b) = (a, b);...
`^` is valid in URLS, but as a postprocessing pass, strings that should probably get autolinked end up superscripted, mangling the link. ``` https://www.wolframalpha.com/input/?i=x^2+(y-(x^2)^(1/3))^2=1 ``` run through comrak with `-e...
[Read the commit](https://github.com/brson/annotated-std-rs/commit/e50c2b16455ceff29488bf1f058b6c10906ef990).
Example page: https://github.com/rust-lang/rustup.rs#working-with-nightly-rust Anchors don't work in basic-http-server. Naming is wrong.
While looking through another manifest file to find the features of a crate I was working on, I wished that cargo would show me it on the command line, along...
It seems like `Value` has the default recursive `Drop` implementation, and if it gets too deep then `Drop` hits the end of the stack. I recently had to write a...
Right now it's just a collection of links (the basic format of each entry is 'name - author'). It might be helpful to make room for 1-2 sentence explanations of...