Eric Seppanen

Results 11 issues of Eric Seppanen

`List` has fields `data` and `next`, but in the `impl Clone` it says `value` and `next`. > ```rust > #[derive(Clone)] > struct List { > data: Rc, > next: Option,...

I'm not sure why this happens, but it reproduces every time for me: ``` $ wget -O file1 https://crates.io/api/v1/crates/semver/1.0.4/download $ cargo download semver=1.0.4 >file2 $ ls -l file? -rw-rw-r-- 1...

`std::io::Write::write()` does not guarantee writing all bytes. For that, we should use `write_all()` instead. Fixes #10.

We are occasionally bitten by a [bug](https://github.com/Python-Markdown/markdown/issues/1209) in Python-Markdown

# Bug Report I frequently use this syntax to disable syntax highlighting. It works on other markdown implementations (e.g. github): ```` ```text some text here ``` ```` The `text` language...

The most recent stable `rust-s3` release on crates.io is 0.26.4. However, there is no git tag for 0.26.4 so it's not clear what code is in that release. Could you...

bug

# Background There are some rustc `-Z` options that only output extra information, that are really useful on the stable compiler when investigating compilation time issues. `-Z time-passes` reports (among...

T-compiler
major-change

"Multiple config files" might be a can of worms, but I could see a few different ways this could be useful: - I have a set of aggressive lints I...

If I use a new clippy lint in `Cranky.toml`, but someone else hasn't moved to that Rust version yet, they will get an "unknown lint" error. If I don't want...

I would like to be able to write: ``` $ cargo cranky --add cast_possible_truncation ``` and have it automatically added to the `Cranky.toml` file (as a `warn`).