forked from actix/actix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (57 loc) · 1.62 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
[package]
name = "actix"
version = "0.8.0-alpha.2"
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"]
edition = "2018"
[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 = ["resolver"]
# dns resolver
resolver = ["trust-dns-resolver", "tokio-tcp"]
# Adds assertion to prevent processing too many messages on event loop
mailbox_assert = []
# actix-http support
http = ["actix-http"]
[dependencies]
actix-rt = "0.2.2"
actix_derive = "0.4"
bytes = "0.4"
crossbeam-channel = "0.3"
derive_more = "0.14.0"
futures = "0.1.25"
hashbrown = "0.1.8"
log = "0.4"
lazy_static = "1.2"
bitflags = "1.0"
smallvec = "0.6"
parking_lot = "0.7"
tokio-io = "0.1"
tokio-codec = "0.1"
tokio-executor = "0.1"
tokio-tcp = { version = "0.1", optional = true }
tokio-timer = "0.2.8"
# actix-http support
actix-http = { version = "0.1.0-alpha.1", optional = true }
# dns resolver
trust-dns-resolver = { version = "0.11.0-alpha.2", optional = true, default-features = false }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1