Marco A L Barbosa

Results 12 comments of Marco A L Barbosa

How the proposed approaches works for doc tests (they are ephemeral)? The `--with` approach would work.

@matklad > But I think that executing doctests directly is an extremely niche use case, and perhaps we can just not do this? My use case for executing doctests directly...

In some cases it is not possible to call a static method defined in trait even if the trait does not have an associated type: ``` rust pub trait X...

> why are you expecting F1..F10? There is no label on the keys as such. The fact that they occupy the same location as F-keys would on a PC keyboard...

I think there are two strategies: 1. Watch rust files in every workspace member, when a file changes execute cargo passing the changed member to --package (-p). For example ```...

An option to make tectonic faster is to use a non-cryptography hash function, like https://github.com/Cyan4973/xxHash.

@rekka Thanks for working on this, you got really incredible results! I noticed later that I should use `-r 0` instead of `-r 1`. Anyway, I got the following results...

The Fira fonts was not installed in my system. Installing the fonts reduced the time to 5.3s (`sha2::sha256_utils::compress256` took 6% of the time). Using the feat-xxhash branch the time is...

A simple solution is to compare the index of the edges. This does not create a issue with directed graph, because the edges `1->2` and `2->1` will have different indexes....

Boost got it right. See Undirect Graphs http://www.boost.org/doc/libs/1_59_0/libs/graph/doc/graph_concepts.html, out_edges http://www.boost.org/doc/libs/1_59_0/libs/graph/doc/IncidenceGraph.html, and in_edges http://www.boost.org/doc/libs/1_59_0/libs/graph/doc/BidirectionalGraph.html