async-net/Cargo.toml

23 lines
685 B
TOML
Raw Normal View History

2020-07-04 08:39:40 +00:00
[package]
name = "async-net"
2021-04-24 09:34:15 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.0.0"
2020-07-04 08:39:40 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
2023-10-08 05:59:24 +00:00
edition = "2021"
2023-06-11 04:26:28 +00:00
rust-version = "1.63"
2020-07-04 08:39:40 +00:00
description = "Async networking primitives for TCP/UDP/Unix communication"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/async-net"
homepage = "https://github.com/smol-rs/async-net"
2020-07-04 08:39:40 +00:00
documentation = "https://docs.rs/async-net"
keywords = ["networking", "uds", "mio", "reactor", "std"]
categories = ["asynchronous", "network-programming", "os"]
2022-01-08 12:59:24 +00:00
exclude = ["/.*"]
2020-07-04 08:39:40 +00:00
[dependencies]
async-io = "2.0.0"
2020-09-07 13:55:52 +00:00
blocking = "1.0.0"
futures-lite = "2.0.0"