Pascal Hertleif
Pascal Hertleif
Hey, sorry for the late response. I see the issue -- we should print backtraces is available. I'm right now considering how best to refactor the `main` macro. So, even...
My first try: I implemented [this script to resize JPGs](https://rust-lang-nursery.github.io/rust-cookbook/concurrency.html#generate-jpg-thumbnails-in-parallel) in #23 It uses glob, rayon, and image. I think of these three, glob and rayon are general purpose for...
Sure, go ahead! Feel free to post a link to a repo here. I'd love to hear what surprised you with quicli and what was missing :)
Go right ahead! I'd to get feedback on this :) Even just a gist with a few lines of Rust code and a Cargo.toml work!
Looks good, @deg4uss3r! This waits for the connection to close before printing, right? I think you could wrap `tcp_listener` in a `std::io::BufReader` and then use `for line in buffered_tcp_listener.line()` to...
Thanks for the great feedback, @mattgathu! > I've been writing a simple cli tool using quicli for zip and tar files packing and unpacking Cool! Do you have a public...
How about this: - By default, only log errors. - `-v` logs warnings from us and dependencies - `-vv` and above only increase _our_ log level - mention `env RUST_LOG=dep_name=info`...
Thanks! Can you say which parts of itertools you used and which problems you were able to solve with it? (I don't yet advertise which crates quicli includes because the...
Quoting @polarathene from #22: > How would you go about introducing progress visuals(common to see something like `[=====---------]49%`) or busy indicators(I've seen a project for this, maybe it was in...
console makes sense to use when we are also using indicatif, as it is one of its dependencies anyway. Not sure if it supports Windows (or if we should care...