Pascal Hertleif
Pascal Hertleif
@epage I usually agree with wildcard imports being bad, but preludes are a special use case as they only re-export the things that you'd usually import anyway. But that's not...
Sorry, I'd love to make progress here. I really feel like I should spend some time thinking about this and maybe experimenting with more real-world code; but I don't have...
Since creating this issue, I've used duct in a few more projects and really liked it (I still have to use subprocess, but duct seems more popular overall). At the...
Need at least one example using `main_binary` and/or `cargo_binary` to actually test a Rust CLI app.
Agreed, these functions need docs. I’ve been meaning to get back to this crate and the ongoing API refactor (I’m sorry I haven’t been around much, @epage!) and more detailed...
I'm fine with removing the macro. I'd like to have a way to specify a bunch of arguments at once without typing tons of quotes. What do you think about...
It was PR #29. I think I'd like to revisit that idea but use it for `.args(r#"--foo --bar="lol" --yay"#)` instead of the `::command()`
Sounds like a good idea -- especially for those projects where you don't want to keep running `cargo -Z minimal-versions build` and change the manifest manually :) Maybe this can...
I'm into this as well at the moment. I followed [the proto3 docs](https://developers.google.com/protocol-buffers/docs/proto#customoptions) to add a custom option and prost fails to read in the files when I don't import...
So looking at a `test.proto` like this ```proto syntax = "proto3"; package test; import "google/protobuf/descriptor.proto"; extend google.protobuf.MessageOptions { int32 message_opt1 = 7739036; } message Test { option (message_opt1) = 420000;...
Ah, I should've probably explained that. I've patched prost-build locally to also give me a `Vec` to generate some helper data structures (I'll make a PR when it works in...