Boscop
Boscop
I use `vst-rs` regularly for coding little utility VSTs that I only use myself, and for that I would really like to keep using this crate! (Not all hosts support...
I'm still very interested in this feature :) The way it could work is that each folder gets a hash based on hashing all the hashes of its contents (files...
According to [this benchmark](http://www.storagereview.com/seagate_laptop_sshd_1tb_review) my HDD (Seagate HDD 1TB, ST1000LM014) performs best when the number of outstanding IO operations is 32. Does that mean I should use a threadpool of...
We're running into this issue in production. Does anyone know a workaround that works now?
@sfackler You mean rolling back the transaction on Drop if the drop was caused by a panic?
@Nokel81 Yes, please :)
It's a huge project.. Btw, it actually says `lazy_static::Deref`, any idea why? > error: the trait bound `rgb::RGB: lazy_static::Deref` is not satisfied error: the trait `lazy_static::Deref` is not implemented for...
```rust pub struct Col(pub RGB); impl ::std::ops::Deref for Col { type Target = ::Target; #[inline] fn deref(&self) -> &Self::Target { ::deref(&self.0) } } ``` Hm, no idea why it confuses...
Btw, it is working on another type in the same project! But not on `Col` for some weird reason.. ```rust #[derive(Deref, Clone)] pub struct Voices(pub Vec); ```
Yes, please! My use case is: I want to serve a web app from a web server, the web app consists of multiple assets files which I want to embed...