Devashish Dixit

Results 97 comments of Devashish Dixit

Is this still valid? If yes, is anyone working on this? If not, I'd like to start working on this. @RoGryza @skade @aturon

I can take a look if no one else is already working on it.

I've created a crate based on this with updated dependencies: https://crates.io/crates/tonic-web-wasm-client Also, in `tonic-web-wasm-client`, `Client` implements `Service` instead of `GrpcService`.

I think they're all great. They're just different APIs to do the same thing (except for some extra features). That said, it'll be good to have some comparison of features...

For `cli-table`, my main focus is to support all the platforms and at the same time limit the dependencies to keep the compile times and crate size low. Currently, this...

> @devashishdxt If your ok with it, I would go ahead and mention your project with your short summary in my project's README :) Sure

@Nukesor I'll also do the same with your project summary (and others).

The encoding scheme is very similar to bincode. So, the performance should not be very different from bincode if you use buffered IO readers and writers. I’ll try and write...

Hi. The extra characters are for colouring information. You can set `ColorChoice::Never` to stop printing coloured output for integration tests. https://docs.rs/cli-table/latest/cli_table/struct.TableStruct.html#method.color_choice Please let me know if it doesn't work.

You can just use an environment variable when running integration tests and use that environment variable to disable coloured output. Alternatively, you can try to set `NO_COLOR` environment variable which...