Boscop

Results 479 comments of Boscop

Any update on this? :) I'm getting this build error when cross compiling for macos because one of my deps's build.rs script uses this cmake crate: ```sh error: failed to...

Please add Deref/DerefMut like https://crates.io/crates/shrinkwraprs

I haven't used shrinkwraprs before, how is its Deref impl different to your approach?

Does it only work for members that also impl `Deref`?

Thanks, I'm looking forward to this! :)

Yes, please add `--depth`, and a shortcut `-D` being equivalent to `--depth=1` because this is the most useful. E.g. to find out which crates in your workspace use different versions...

@nrc Can you please make the generated `new` method a const-fn? :)

Yes, please allow making `new` private even for public structs/enums. In several of my use cases I only intend to call the derived `new` internally, and I get this error:...

Hm, it works when I write: ```rust delegate_method! { impl PausablePlayer { player as RunningPlayer: pub fn jump_to(&mut self, dst_time: TickTime); pub fn rewind(&mut self); } } ``` But shouldn't...

You can use this: https://crates.io/crates/array-macro E.g.: ```rust ArrayVec::from(array![vec![]; 16]) ``` But it may not be in-place (may move the whole array)..