-
Any errors coming from `p2p::peer_agnostic::Client::*_stream` should be irrecoverable errors.
For example:
- `class_definition_stream` returns a fatal error (wrapped in `anyhow::Error`) only when …
-
```rust
#![feature(lazy_cell)]
use std::sync::LazyLock;
static ERR: LazyLock =
LazyLock::new(|| anyhow::anyhow!("original err").context("ctx"));
fn main() {
std::env::set_v…
-
[`failure` crate](https://github.com/rust-lang-deprecated/failure) was deprecated. It's recommended to use `thiserror` and `anyhow` instead
-
What image format(s) are supported by the `generate-scheme` command?
I've tried with a .jpg and .png and am always given an error: `Error: Invalid image file supplied`
I really don't know anythi…
-
When I have an `anyhow::Error` and convert that into a `Box`, it seems that I can no longer downcast it back into anything (neither `anyhow::Error` nor the original error type). This differs from the …
-
Hi there. I'm attempting to run Stamina Attributes through Sinytra Connector w/ NeoForge 21.1.72 (1.21.1). It seems to function, but the stamina bar does not render despite both `"show_stamina_bar": t…
-
-
```
0:00:01.276 => yabridgectl-5.1.0-r0: running prepare...
[vendoring etc]
0:00:02.068 => yabridgectl-5.1.0-r0: running patch hook: 000_patches...
0:00:02.070 => yabridgectl-5.1.0-r0: running set…
-
Hello,
On windows 10, I have upgraded my Dplug to V14, the latest. I also upgraded LDC2 to 1.39.
I clone the dplug repo to get the latest exemples plugins :-)
Since then, I compiled the "distort"…
-
As `thiserror` is complementary to `anyhow`, and `anyhow` supports `{:#}` format, would be nice if `thiserror` errors supported it too. This way in codebases that mix `thiserror` and `anyhow` errors, …