Tim Diekmann
Tim Diekmann
As `wasm-pack` is supposed to be installed through `cargo install` (the package manager for Rust) I wonder if that is missing for you. I noticed, that this is currently not...
Hi @viktor-evdokimov. As we were not able to reproduce the issue and it's likely that the issue happened due to a missing Rust installation we're going to close this PR....
Hi @jquesada2016 and thanks for filing this issue! I really like the idea, but sadly I don't see how this could be implemented. `Error::source` returns a reference to another error...
Your approach most likely would work, however, we would need to use `Arc` instead of `Rc` as otherwise, the Context would not be `Send + Sync`. Personally, I'd prefer to...
> If you like, I can give ErrorFrame a try. Sure, why not! 🎉 Feel free to ping me if you need any help. It's not a problem to open...
I implemented capturing for `sources` in the linked PR above. For simplicity (to get the output in the first place) I added them as strings (rendered as contexts).
[Part of `[email protected]`](https://github.com/hashintel/hash/releases/tag/error-stack%400.5.0)
It's possible to disable the `location` by setting a custom debug hook for `Location`: ```rust error_stack::Report::install_debug_hook::(|_, _| {}); ``` For more information about the debug hooks please see [the corresponding...
Hmm, I haven't thought about `panic_immediate_abort` (and also only used that in very few contexts so far). But as this is typically used in contexts where binary size does in...
As I am the only contributer from the allocator wg, I could update this crate as well if this is really needed. There is a [major overhaul of `AllocRef` in...