Benjamin Sago
Benjamin Sago
OK, I spaced out everything on [the install page](https://the.exa.website/install/linux). I wanted to keep the links to the packages rather than just listing the commands to run, so I gave them...
exa already supports xattrs, except it uses [its own implementation](https://github.com/ogham/exa/blob/master/src/fs/feature/xattr.rs) rather than using the xattr crate. There’s probably a lot of overlap between the two and it might be worth...
Also, I just ran `ls -Z` on some of the servers at work. 50% of the files replied with `system_u:object_r:bin_t:s0` and the other half replied with just `?` and a...
It looks like [rust-cross](https://github.com/japaric/rust-cross) can help with cross-compiling for ARM — the next time I make a new release I’ll see what I can do.
Having dog print a message or a flag is definitely something I could provide. I'm pretty sure I've made that mistake before as well! To be clear (as I misunderstood...
I was able to do the hosts file checking without too much fuss: 
Thanks for the bug report; I'm able to reproduce on my own machine too. [This line contains the problem](https://github.com/ogham/dog/blob/445ed98bcfd8d2e4cbb8e924e6cf69ad5f9589e1/dns-transport/src/udp.rs#L52) — it thinks the nameserver looks like `host:port` just because it...
Right, I forgot that `127.0.0.53` is part of the localhost block, not just `127.0.0.1`. Anyway I'll see what I can do to fix this.
I did consider this, but didn't think there'd be any DoH servers that required authentication. Of course, over time, I guess there would be. My preference would actually be to...
I'm not sure if there are any side-effects of switching away from OpenSSL, but I would at least like there to be some way to have pluggable SSL implementations, so...