tokio-serde icon indicating copy to clipboard operation
tokio-serde copied to clipboard

Results 9 tokio-serde issues
Sort by recently updated
recently updated
newest added

hi, Can't seem to be able to use it my code. I did import tokio-serde = "0.8.0" in my dependencies, maybe I'm missing something ? Though when i put use...

The tokio link wasn't working anymore and the tokio_util link pointed to an older version.

Currently, this only works for streams over `BytesMut`. It would be nice to also support streams that yield `String`, for example.

A few crates did not have their minimal version set correctly. This bumps their versions. Check with: rm -f Cargo.lock cargo +nightly check -Z minimal-versions --all-features

I have a large client-server software where the messages are encoded and decoded through `bincode` and may contain a bunch of strings, integers, floats, etc. I recently tried to move...

I ran into issues trying to get a duplex pipeline working. It took me a few hours to figure out I should have been using `tokio_util::codec::Framed`. This PR attempts to...

Thanks for this library, really appreciate it. Its saving me a lot of time. I was wondering if https://docs.rs/tokio/1.0.2/tokio/net/struct.TcpStream.html#method.into_split would ever get any support? I want to read and write...

Using the lib on a length_delimited like this: ![image](https://user-images.githubusercontent.com/300333/114194737-11343680-9950-11eb-8e4b-fee8a83ecc89.png) caused data to accumulate (buffer up), and when I would close the sending connection it would flush the buffered values somehow,...

Hi, this may be a dumb way to ask for help: via a pull request which does not compile. Once I/we figure out why it doesn't work, and we fix...