Aurelia Molzer

Results 457 comments of Aurelia Molzer

I don't share that sentiment of name conflicts outside the library at all. Namespaces exist to avoid that exact problem of complicating the choice for names by collisions. True glob-imports...

Perhaps the examples should use this renaming import though. That would be easier to copy&paste which is part of the motivation for having examples in the first place.

The backtrace issue works as follows: Instead of `cargo run` you should use `RUST_BACKTRACE=1 cargo run` Of course, replace it command with whatever command you are actually using to run...

Your issue might be the one mentioned in the top-level Readme as well: ["I get "GL context creation failed" when running an example.](https://github.com/PistonDevelopers/Piston-Tutorials#troubleshooting)

Wrap the backtrace in a code block, that probably works best

Can you share the reproduction, the binary lzw stream if possible.

I don't see this being a bug. The input stream _is_ invalid, it should end with an end code (129 = 0x81), and it doesn't since it instead has the...

The library reports the *valid* filled output buffer size as part of `BufferResult` (and all the other variants), even in the error case (that was part of the considerations when...

The API required to do this properly might look like a form of `Read::take`, some new control to exit early on reaching some limit of total bytes. I suppose that...

We didn't plan to include binary files in crate release to keep them light for the typical consumption—compilation as a dependency. Unfortunately, this conflicts with the dev-integration as a testable...