Boscop

Results 547 comments of Boscop

Btw, sorceress seems to work already inside `evcxr`, I just tried it in PowerShell on Win 10: ```rust > cargo install evcxr_repl > evcxr Welcome to evcxr. For help, type...

@Miserlou Does it use Karplus-Strong synthesis? And is it polyphonic? I'm looking for a module that I can use to do electric guitar chords..

Are Jobs re-entrant?

Yes please add Windows support! At least for the library part of rff (which doesn't need pancurses). I want to use rff as a library for text processing in a...

@repi It's multi-threaded, but not doing anything crazy. I spawn 10 threads for different things and actix apparently spawns like 8. But one thread is doing the bulk of the...

I have this in my Cargo.toml: ```toml zip = "0.5" ``` https://crates.io/crates/zip `cargo update` downgraded it: ``` > cargo update Updating actix-web v3.3.1 -> v3.3.2 Updating addr2line v0.13.0 -> v0.14.1...

@Eh2406 Would it be sufficient if I upload the Cargo.lock file how it was before `cargo update`?

In my use case I have a workspace whose toplevel crate has a `.cargo/config` of ```toml [build] rustflags = ["-Ctarget-feature=+crt-static", "-Ctarget-cpu=haswell"] ``` But in one of the subcrates (my app's...

The frontend crate is not compiled together with the toplevel (backend) crate. But they are both in the same workspace because they are part of the same project and they...

I'm looking forward to this. My use case is: I'm writing a game with the unrust webgl engine, and want to have a HUD GUI overlay based on html with...