Boscop
Boscop
> > Can't the handle to the child process be decoupled from the writer? So that there's > > a separate ChildHandle that can outlive the WriterHandle? > Maybe, but...
Ah thanks, it turns out it works on Windows. It was because of the docs that I thought it's unix-only because it's `stdin_file` and on `IntoRawFd` it says "This is...
@oconnor663 Thanks, that works. Btw, is there a crate for splitting a string into cmd args? I can't just split by whitespace because it might be escaped or inside a...
@oconnor663 It seems it's not possible to due orphan rules to impl a trait for both cases, like: ```rust trait CmdArg {} impl CmdArg for T {} impl CmdArg for...
Or what would be the steps to install cargo-web in addition to this buildpack, and then run it via `release:` in the Procfile?
Because building the frontend takes a long time, ideally it should also benefit from the build cache. I think it can be supported by this buildpack by allowing users to...
https://github.com/overdrivenpotato/rust-vst2/issues/41 Due to lack of maintainer activity (#38), we've decided to make a hard fork of this repo so we can continue active development: https://github.com/rust-dsp/rust-vst Our fork has been worked...
Ah, the CI builds are failing because they are on stable. Should I do the suggestion above? (Make `api::Events::events_raw()` public and make `api::Events::events()` conditionally available with a `nightly` feature?)
Right now the builds fail on stable because of the `pub(crate)` syntax, which isn't on stable yet.. Should I make those symbols completely public?
I forked glutin, conrod and the piston window stuff and modified it to support multiple child windows in the same thread (required for VST but by default glutin creates a...