Sven Cattell
Sven Cattell
`http::Error` implements `From`, this just shortcuts that so we can have an easy time with infallible results. Another option is to implement the following: ``` impl Reply for Result where...
I was having difficulty running this on a 3090ti due to a pytorch/driver issue. Pytorch kept reporting that the cuda kernels were unavailable, but everything below it was installed correctly....
I think we can use tokio's [codecs](https://docs.rs/tokio-util/latest/tokio_util/codec/index.html) to implement configurable compression for async reads and writes, if we add 3 features to `capnp-futures`: 1. Support for writing messages to sinks...
I'm using [rkyv](https://docs.rs/rkyv/latest/rkyv/index.html) for a project and it's quite helpful. I'd like to add optional support for it here as I'd like to have the space savings of half in...
The code in the repo uses tonic 0.6.2, but the version on [crates.io](https://crates.io/crates/grpc-web-client/0.1.2/dependencies) uses 0.4.2. My project successfully builds and passes tests with: ``` grpc-web-client = { git = "https://github.com/titanous/grpc-web-client"...
I think it would be awesome if this supported zero-copy [rkyv](https://github.com/rkyv/rkyv) in addition to serde. It's a bit more complicated as the types the client and server operate on are...
Added a docker container so that folks can get going with just `docker compose up --build`.