forked from actix/actix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (60 loc) · 1.6 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "actix"
version = "0.7.5"
authors = ["Nikolay Kim <[email protected]>"]
description = "Actor framework for Rust"
readme = "README.md"
keywords = ["actor", "futures", "actix", "async", "tokio"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix.git"
documentation = "https://docs.rs/actix/"
categories = ["network-programming", "asynchronous"]
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
[badges]
travis-ci = { repository = "actix/actix", branch = "master" }
appveyor = { repository = "fafhrd91/actix-n9e64" }
codecov = { repository = "actix/actix", branch = "master", service = "github" }
[lib]
name = "actix"
path = "src/lib.rs"
[workspace]
members = ["examples/chat"]
[features]
default = ["signal", "resolver"]
# dns resolver
resolver = ["trust-dns-resolver", "trust-dns-proto"]
# signal handling
signal = ["tokio-signal"]
[dependencies]
actix_derive = "0.3"
# io
bytes = "0.4"
futures = "0.1"
tokio = "0.1.7"
tokio-io = "0.1"
tokio-codec = "0.1"
tokio-executor = "0.1"
tokio-reactor = "0.1"
tokio-tcp = "0.1"
tokio-timer = "0.2"
# other
log = "0.4"
fnv = "1.0.5"
failure = "0.1.1"
bitflags = "1.0"
smallvec = "0.6"
crossbeam-channel = "0.2"
parking_lot = "0.6"
uuid = { version = "0.7", features = ["v4"] }
# signal handling
tokio-signal = { version = "0.2", optional = true }
# dns resolver
trust-dns-proto = { version = "^0.4.3", optional = true }
trust-dns-resolver = { version = "^0.9.1", optional = true }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1