summaryrefslogtreecommitdiff
path: root/crates/tor-proto/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump all crate versions to 0.0.1Nick Mathewson2021-10-291-8/+8
|
* tor-proto: implement tokio Async{Read, Write} traits conditionallyeta2021-10-191-0/+4
| | | | | | | | | futures::io::AsyncRead (and Write) isn't the same thing as tokio::io::AsyncRead, which is a somewhat annoying misfeature of the Rust async ecosystem (!). To mitigate this somewhat for people trying to use the `DataStream` struct with tokio, implement the tokio versions of the above traits using `tokio-util`'s compat layer, if a crate feature (`tokio`) is enabled.
* Move all crates into a `crates` subdirectory.Nick Mathewson2021-08-271-0/+49
This will cause some pain for now, but now is really the best time to do this kind of thing.