Kevin Boos

Results 327 comments of Kevin Boos

Thanks @dcampbell24! Does this include all of the crates, even optional ones? (specified using `make full` or by passing `--all-features` to cargo)? I'm traveling at the moment and can't check...

I see. Yes, make commands don't run any clippy lints, that's only done via CI at the moment. Sorry to confuse you with that unrelated info. For this you'll just...

Thanks for the PR, and sorry it took me so long to review it. I've got a couple thoughts/questions first; we can also discuss this on Discord. To clarify, this...

Could also consider replacing `owning_ref` with https://crates.io/crates/reffers

I think we'll need to replace `owning_ref` entirely. Good candidates are: * `self_cell`: good but a bit limited * `ouroboros`: huge and perhaps too much build-time overhead * `reffers`: not...

Note that all other RustSec advisory database warnings have been addressed. `owning_ref` is all that remains

As an alternative and better solution, we no longer support using `owning_ref` anywhere in Theseus. All of the crates that use it have now been removed; all that's left is...

We should also enable the clippy lint option that checks for `unwrap_or` and `ok_or`, and recommends using the `_else` versions instead!

Hmm I see. I haven't toyed with using `mold` yet but once I get around to it I will comment back here with our options for supporting it. If we...