| 1 | [package] |
| 2 | name = "async-net" |
| 3 | # When publishing a new version: |
| 4 | # - Update CHANGELOG.md |
| 5 | # - Create "v2.x.y" git tag |
| 6 | version = "2.0.0" |
| 7 | authors = ["Stjepan Glavina <stjepang@gmail.com>" ] |
| 8 | edition = "2021" |
| 9 | rust-version = "1.63" |
| 10 | description = "Async networking primitives for TCP/UDP/Unix communication" |
| 11 | license = "Apache-2.0 OR MIT" |
| 12 | repository = "https://github.com/smol-rs/async-net" |
| 13 | homepage = "https://github.com/smol-rs/async-net" |
| 14 | documentation = "https://docs.rs/async-net" |
| 15 | keywords = ["networking" , "uds" , "mio" , "reactor" , "std" ] |
| 16 | categories = ["asynchronous" , "network-programming" , "os" ] |
| 17 | exclude = ["/.*" ] |
| 18 | |
| 19 | [dependencies] |
| 20 | async-io = "2.0.0" |
| 21 | blocking = "1.0.0" |
| 22 | futures-lite = "2.0.0" |
| 23 | |