David Tolnay
David Tolnay
The R^2 values from this crate look unrealistically high - way higher than I would expect based on my experience with variance in benchmarks. I skimmed through lib.rs and didn't...
The URL shown on the right side under "About" on https://github.com/edebill/modulecounts on desktop, or at the top of the page on mobile, is broken. http://warm-autumn-58.heroku.com The "About" section on http://www.modulecounts.com...
According to [Rust release milestone predictions](https://internals.rust-lang.org/t/rust-release-milestone-predictions/4591?u=dtolnay), rustc-serialize is scheduled to be deprecated in next month's beta release of Rust.
This is an unfriendly choice for errors returned by a library because it makes them not work with `?`. ```rust async fn repro() -> Result { let _ = surf::get("https://www.rust-lang.org").await?;...
In SUMMARY.md I have a link to a section like `[Section header](page-title.md#section-header)`. This works in GitBook but mdBook creates empty files `page-title.md#section-header` and `book/page-title.md#section-header` (file names containing `#`).
Not as much of a reduction in peak memory usage as I hoped. Good performance improvement though. **Before:** ```console load time: 17.91s dataflow time: 117.53s 70357390 allocations, total 214.5 GB,...
Maybe as simple as just expected output on a tiny subset of the real db-dump data, for a variety of queries.
This works for `bazel build ...`. I have not yet gotten `bazel run //third-party:vendor` working. https://github.com/bazelbuild/rules_rust/issues/1493 https://github.com/dtolnay/cxx/issues/1095
`CxxString` implements both std::fmt::Write and std::io::Write. In situations where both traits are in scope, applying `write!` becomes ambiguous. This would be fixed by having a `write_fmt` inherent method, which would...
C++ enums come with bit operators: ```cpp enum Enum { A = 1, B = 2, C = 4, }; int main() { auto x = Enum::A | Enum::B; }...