SLMT / telnet-rs

A simple implementation of Telnet in Rust.
MIT License
44 stars 20 forks source link

adds requirement for Send + Sync to `dyn Stream` #23

Open Leandros opened 1 year ago

Leandros commented 1 year ago

The lack of requiring the stream trait to be Send and Sync made Telnet itself neither Send nor Sync, despite actually being Send and Sync.