Inokentiy Babushkin

Results 25 comments of Inokentiy Babushkin

I've just noticed (in this issue: https://github.com/rust-lang-nursery/rust-semverver/issues/61) that this is a feature people are interested in. How exactly do you expect to interact with rust-semverver? I'm not sure parsing it's...

On 2018-06-17, Dan Kaplun wrote: > Here is the entirety of what `cargo semver` outputs to stdout: > ```sh > $ cargo semver 2>/dev/null > version bump: 0.1.2 -> (breaking)...

To get back to this -- how about just shelling out to `cargo semver --compact -q` (which I have implemented -- it outputs only the recommended version number on stdout...

Well, one can argue about the modality of running semverver obviously, but the main point for me now is whether the proposed level of dependency on an external tool is...

Argh, sorry -- I forgot to reference all the relevant information as it's already included in the proposal. Luckily, the relevant bits are available [here](https://twki.de/proposal/proposal.html). To summarize: Commit `824b7b675990baab87fa3df347fa4a5491f6809b` from...

Yeah, that is odd. However, since multiple different tests are run in the binary, the rough ballpark of the runtimes makes sense. I don't yet have an explanation on the...

Aaand I forgot windows has no `mmap`!

Excuse the force-push -- but windows builds should work now!

Alright, most of the performance regression is now gone after optimizing the `Drop` and `Clone` impls on `Slice`s. There is some overhead left, but at the moment I am unsure...

Just a quick update: I'm currently experimenting with ways to provide arena allocation for other uses of `Vec` in the code which perform resizing operations. I'll post results/code when I...