Results 47 comments of crumblingstatue

The most general solution would be to allow optional dependencies for every `bin` target. TOML makes this relatively easy to express: ```toml [[bin]] name = "foo" [bin.dependencies] clap = "1"...

@stale bump. (whoops, apparently bots live in a separate namespace) There is real demand for this feature, so let's keep this open as a reminder that somebody should implement it...

@alexreg Well, I do *want* this feature, but I'm not sure if I'm up to writing an RFC with a concrete implementation plan. I think it's useful to track features...

A family member sent me a shopping list in SMS and I wanted to convert it to a todo list. I think it would be nice to have an "import"...

The error I'm wrapping has a lifetime parameter, so I would need this as well. ``` Rust quick_error! { pub enum MyError) { } } } ```

I actually found a better way to represent my error that doesn't involve lifetimes, so this is not a blocker for me anymore.

Here is some motivation fuel from a contributor to the [sdl2](https://crates.io/crates/sdl2) crate: https://cobrand.github.io/rust/sdl2/2017/05/07/the-balance-between-soundness-cost-useability.html

Since we probably don't want to expose the names of private fields in a public API, there should be a way to declare abstract "borrow regions" for your type as...

I absolutely love https://love2d.org/wiki/SpriteBatch. It would be nice to have a similar feature in Piston. It's kind of off-putting when your Rust game runs slower than Lua because of the...

> @crumblingstatue Can you open a new issue about it? Thanks! Alright, I opened #1041.