Imbris

Results 125 comments of Imbris

[autoref-specialization](https://github.com/dtolnay/case-studies/blob/master/autoref-specialization/README.md) seems like it could be viable here? (Depending on what the generated code looks like)

We might be able to use this https://doc.rust-lang.org/rustdoc/unstable-features.html#doc_auto_cfg-automatically-generate-doccfg Also see here for examples of how to only enable the necessary nightly feature when docs.rs is building the docs: https://stackoverflow.com/a/61417700

> at which point, you must ensure that the reference is never accessed after the borrow guard is dropped, but you can create your own `MappedRefMut` or whatever you need...

> Or if that isn't possible, maybe another mode that would allow us to use the alt bindings for navigation while the ctrl bindings are locked, like the way they...

@zailaib try switching to the opengl graphics backend in Airshipper

I encountered a case where this would have been useful.

@zesterer `cargo deny` CI was added in https://github.com/amethyst/specs/pull/749 and there was a bit discussion on it here https://github.com/amethyst/specs/pull/749#discussion_r903036768. I think the current set of allows matches what was needed for...

Superceded by #781. Sorry for the delay here, and thanks for resolving the licensing issue! (even if BSD-2-Clause might have been fine since BSD-3-Clause is already allowed)

looks like they became the same in https://github.com/amethyst/specs/commit/b4e83ceda356631f480fc488e7c7f716bf82f903 I don't see any reason to have a `&World` variant here so they can probably be merged into a single method.

> Note that CAS failure ordering that is stronger than success ordering requires Rust 1.64+: https://github.com/rust-lang/rust/pull/98383 Gah! :slightly_frowning_face: > Although, as usual, I am unnerved by the fact that we...