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