-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 907 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "async-tcp"
description = "Traits implementable by async versions of TcpListener and TcpStream"
version = "0.2.0"
homepage = "https://github.com/r3v2d0g/async-tcp"
repository = "https://github.com/r3v2d0g/async-tcp.git"
documentation = "https://docs.rs/async-tcp"
keywords = ["async", "io", "net", "tcp"]
categories = ["asynchronous", "network-programming"]
readme = "README.md"
license = "MPL-2.0"
authors = ["Matthieu Le brazidec (r3v2d0g) <[email protected]>"]
edition = "2018"
[features]
async-io = ["async-io_", "async-peek/async-io"]
async-net = ["async-net_", "async-peek/async-net"]
[dependencies]
async-peek = "0.3"
futures-lite = "1.0"
[dependencies.async-io_]
package = "async-io"
version = "0.2"
optional = true
default-features = false
[dependencies.async-net_]
package = "async-net"
version = "1.0"
optional = true
default-features = false
[dev-dependencies]
smol = "0.4"