Alex Lyon

Results 35 issues of Alex Lyon

Firstly, `getty` shouldn't just panic on failure (it should instead return `Result`s like the other utilities). Because of how `getty` affects the state of the system, I think the `execve()`...

enhancement

I think it would be better for this repository to be under the control of an organization so that pull requests and issues can be dealt with even while @DaGenix...

Because `digest_length()` is 0, `output_bits()` is also 0. This means the slice passed to `result()` ends up having a length of 0.

We should add implementations of both.

good first issue

We should start fuzzing to find security vulnerabilities at some point. It may be easier to do this after #1124 is done.

Currently we use Oniguruma for `expr` because it has support for the GNU regex syntax. Ideally, we should be using something like [Rust regex](https://github.com/rust-lang/regex), but AFAICT this involves either converting...

B - low priority
I - Refactoring
U - expr

I didn't see this when I briefly checked the list of issues, so sorry if it's already been reported. Both libgit2 and `git clone` spend roughly the same amount of...

performance

This should resolve #23. The implementation works on both Linux and Windows for me (with the available tests). It's still very possible something broke though, so I'd appreciate it if...

The behavior of globbing in the shell (the two I have specifically tested are `dash` and `zsh`) differs from the behavior of `glob` given the following program: ```rust extern crate...

It pretty much sucks right now (the worst problem is due to the `&'a mut JitFunction` that gets returned when you use `jit.function()`).

enhancement