[package]
name = "actix"
version = "0.7.9"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
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"]
resolver = ["trust-dns-resolver", "trust-dns-proto"]
signal = ["tokio-signal"]
[dependencies]
actix_derive = "0.3"
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"
log = "0.4"
fnv = "1.0.5"
failure = "0.1.1"
bitflags = "1.0"
smallvec = "0.6"
crossbeam-channel = "0.3"
parking_lot = "0.7"
uuid = { version = "0.7", features = ["v4"] }
tokio-signal = { version = "0.2", optional = true }
trust-dns-proto = { version = "^0.5.0", optional = true }
trust-dns-resolver = { version = "^0.10.0", optional = true }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1