Aleksey Vasilenko

Results 28 comments of Aleksey Vasilenko

For example squidproxies.com still sells squid/3.1.23, you could check it with one of IP we bought from them: ``` curl -kvx 23.19.34.138:8800 https://httpbin.org/ip ``` (it will give you an error...

It does indeed, thank you! I've pushed a PR - #190

Same thing on Alpine Linux - provided protoc binary expects /lib64 to be present. It is unfortunate that https://github.com/tokio-rs/prost/issues/771 got stalled - downloading precompiled binary is a terrible solution and...

Fixed by https://github.com/meshtastic/rust/pull/16

tokio-serial example handles the pulling correctly: ```sh cargo run --features="rt codec" --example serial_println -- /dev/ttyACM0 [LOG DATA] ## Pull out USB [PROGRAM EXITS] ```

Looks like the same issues: - https://github.com/openwrt/uclient/issues/4 - https://github.com/openwrt/openwrt/issues/15427

I'd be happy to help. What are the major issues with the repo now? Besides new release overdue I'm not seeing what is missing, but may be my use case...

Full featured Rust CLI on a par with the python one could be something that could attract more users (no need to install Python and dependencies). I can take it...

Awesome, I'll prepare a PR with a bare bones implementation and we can decide where to go from there.

@geoffreygarrett Great point about idiomatic CLI v2, it would be nice to have alongside with python-compatible v1, may be even in the same binary (we could use [multicall feature](https://docs.rs/clap/latest/clap/struct.Command.html#method.multicall) of...