Boscop
Boscop
https://github.com/rust-lang/rust/blob/master/RELEASES.md#compiler-1 > You can now use -C target-feature=+crt-static on linux-gnu targets. Note: If you're using cargo you must explicitly pass the --target flag. But when I run > RUSTFLAGS="-C target-feature=+crt-static"...
We have a lot of instances of this pattern: ```rust #[derive(Debug, PartialEq, Eq, Hash, Clone, Copy, DieselNewType, Serialize, Deserialize, From, Into, Display)] pub struct Foo(Uuid); impl FromStr for Foo {...
Please expose the macro so that user code can create an impl for a given N > 32 :)
Does it work for FullHD 30 fps MJPEG webcam? [My webcam](http://www.irush.live/product/hd92-webcam-1080p/)'s default capture option is YUV at 5 fps, the only other option is 30 fps as MJPEG. When I...
I tried running cargo-tree on my workspace's top level crate: ``` > cargo tree -i -p fs2 error: There are multiple `fs2` packages in your project, and the specification `fs2`...
> error: calls in constants are limited to constant functions, struct and enum constructors How can I make the generated `new()` constructor *const-fn*? E.g.: ```rust #[derive(new, Copy, Clone)] pub struct...
Is it possible to name the ctor differently than "new"? I have several use cases where I use the derived `new` only internally in my real ctor that should be...
```rust #[derive(new)] pub struct P String, } /* error: proc-macro derive panicked = help: message: Couldn't parse item: "failed to parse macro input: \"pub struct P String,\\n}\"" */ ``` Another...
I use this crate a lot, also in combination with [`getset`](https://github.com/Hoverbear/getset) and ever since `getset` was modified to return `&mut Self` to [allow chaining setters](https://github.com/Hoverbear/getset/pull/8) it requires changing all the...
Does it work with `impl Trait for Foo` or `impl Trait2 for Foo` ? [E.g. this.](https://github.com/Boscop/easyvst/blob/master/src/lib.rs#L133-L197)