forked from tokio-rs/tokio-proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 854 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
37
38
[package]
name = "tokio-proto"
version = "0.1.1"
license = "MIT/Apache-2.0"
authors = ["Carl Lerche <me@carllerche.com>"]
description = """
A network application framework for rapid development and highly scalable
production deployments of clients and servers.
"""
documentation = "https://docs.rs/tokio-proto/0.1"
homepage = "https://tokio.rs"
repository = "https://github.com/tokio-rs/tokio-proto"
readme = "README.md"
keywords = [ "io", "async", "non-blocking", "futures" ]
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
"test/**/*",
]
[dependencies]
futures = "0.1.14"
log = "0.3.6"
net2 = "0.2"
smallvec = "0.4.0"
tokio-core = "0.1.8"
tokio-service = "0.1"
tokio-io = "0.1"
[dev-dependencies]
bytes = "0.4"
env_logger = "0.3.0"
lazycell = "0.4.0"
mio = "0.6"
rand = "0.3.14"