Xidorn Quan
Xidorn Quan
It would allow us to show more information for each crate. We can probably use markdown (via pulldown-cmark) for the description.
This is a test case: [dissimilar-test.zip](https://github.com/dtolnay/dissimilar/files/5835490/dissimilar-test.zip) To reproduce, extract the testcase, and run `cargo test --release` (`--debug` is too slow to run). There are two testcases: `test_50_000` tests the first...
Currently we rely on using doc test to ensure that violation of the assertion would correctly trigger compile failure. But doc test isn't really scalable, and with adding more complicated...
There are usecases for types like `Foo Foo
It might be useful to add method `fn default_boxed_slice(n: usize) -> Box` if there are such demand.
With [unsafe_block_in_unsafe_fn](https://rust-lang.github.io/rfcs/2585-unsafe-block-in-unsafe-fn.html), we would need to have `unsafe` block in the `unsafe fn` we generate here.
### Input C/C++ Header ```C++ template struct Foo { void* a; }; template class Bar { Foo m; }; class Baz { Bar m; }; ``` ### Bindgen Invocation ```...
Nowadays, most mainstream x86 CPUs support AVX, which supports doing integer computation on 256bit. I believe that would further improve the performance. Intel may start shipping CPUs which support AVX512...
Opening this issue as suggested by @BurntSushi in #1111. I think it would be helpful if ripgrep can support scanning archive files. Scanning tar files can briefly done via `-a`...