bluurryy
bluurryy
**Expected behavior** `set_fn` should not be silent. **Environment** - Sycamore: 0.9.0-beta.2 and master #86f0b05 **Additional context** `set_fn` has the same body as `set_fn_silent`
[`itertools`](https://docs.rs/itertools) version 0.13.0 added a `get` method that takes precedence over the `EnumIter`'s `get` method. So you can no longer import `itertools::Itertools` in a module where you want to derive...
This is just a test to get a benchmark result.
The current implementation of `as_mut_ptr()` looks like this ```rust // This is a primitive deref, not going through `DerefMut`, and therefore not materializing // any references. &raw mut **b ```...
When a second crate is added to the workspace, the package setting for commit messages is ignored and the workspace setting is used instead. I would expect `cargo-release` to change...
I have noticed that miri reports a datarace when allocating a zero sized layout from multiple threads on a new `Bump`: ```rust fn create_bump_and_alloc() { let bump = bumpalo::Bump::new(); bump.alloc(());...