async-prost icon indicating copy to clipboard operation
async-prost copied to clipboard

Results 7 async-prost issues
Sort by recently updated
recently updated
newest added

Bumps [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) from 0.8.5 to 0.8.8. Release notes Sourced from crossbeam-utils's releases. crossbeam-utils 0.8.8 Fix a bug when unstable loom support is enabled. (#787) crossbeam-utils 0.8.7 Add AtomicCell<{i*,u*}>::{fetch_max,fetch_min}. (#785) Add...

dependencies

I follow the tutorial of https://time.geekbang.org/column/article/425005 and repo:https://github.com/tyrchen/geektime-rust/blob/master/21_kv/Cargo.toml. If I change the version of prost from 0.9 to 0.10 and try to run the dummy_server by `RUST_LOG=info cargo run --example...

Not sure if this is maintained. There's no reason to pin all these packages to specific versions, so just pinning to major versions. Also upgrading prost to 0.12 (the latest...

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.18.2 to 1.18.5. Release notes Sourced from tokio's releases. Tokio v1.18.3 1.18.3 (September 27, 2022) This release removes the dependency on the once_cell crate to restore the...

dependencies

the method next exists for struct AsyncProstStream, but its trait bounds were not satisfied [E0599] method cannot be called due to unsatisfied trait bounds Note: the following trait bounds were...

#https://github.com/tyrchen/async-prost/issues/8

pub fn tcp_into_split( mut self, ) -> ( AsyncProstReader, AsyncProstWriter, ) tokio tcpstream has a function called into_split: pub fn into_split(self) -> (OwnedReadHalf, OwnedWriteHalf) when we need to handle read...