Marcin Anforowicz

Results 4 issues of Marcin Anforowicz

After pressing enter on a wrapped line, it looks as if the line content prints twice (with some visual glitches). I'm using `rustyline-async` version `0.4.0` on Linux. Here's the example...

bug

According to [PEP 561](https://peps.python.org/pep-0561/), > Package maintainers who wish to support type checking of their code MUST add a marker file named py.typed to their package supporting typing. I noticed...

Running `unused-features analyze --log-level debug` on generated empty reports for each crate: ```json { "version": 0, "root_name": "Workspace", "workspace_crates": {} } ``` The logs looked normal, other than this being...

I get a runtime error when trying to deserialize a tagged enum that contains a map with integer keys. Here's a reproducible example: ```rust use serde::{Deserialize, Serialize}; use std::collections::BTreeMap; #[derive(Serialize,...