Brian Olsen
Brian Olsen
When I run `cargo run -vv --example keylist --` on macOS High Sierra I just end up getting a link error: ``` Fresh cfg-if v0.1.2 Fresh libc v0.2.33 Fresh bitflags...
I am using [fuse-backend-rs](https://github.com/cloud-hypervisor/fuse-backend-rs) to talk to MacFUSE and it supports multithreaded channels and so will dup the fd sent from mount_macfuse and blockingly read and write to the copies....
I am getting some kind of bad interaction between jruby, trinidad and jbundler which means whenever I try to start trinidad I get a NoClassDefFoundError: org/bouncycastle/asn1/DERBoolean After having spent several...
The fuse-t session uses a socket pair for communication but wasn't correctly handling EOF and so when trying to gracefully unmount it would just hang. This change simply deals with...
Would supporting the variant of base32 that [Nix](https://github.com/NixOS/nix) uses be something you would consider? It is like `LeastSignificantFirst` but reversed: ``` let mut spec = Specification::new(); spec.symbols.push_str("0123456789abcdfghijklmnpqrsvwxyz"); spec.bit_order = BitOrder::LeastSignificantFirst;...
I have a project I contribute to that uses Nix to build a Rust project that uses the `#[files(...)]` feature of rstest. But because I am on macOS which compiles...
This changes more of the setters both manually implemented and generated to accept a SetterInput. This makes it useful to implement SetterInput on your own types to support using them...
This adds a public `disconnect_background` function to `Disconnector` so that you can signal it to disconnect but not have to wait for it to do so. I usually run the...