[package]
name = "actix"
version = "0.3.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
build = "build.rs"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
description = "Actor framework for Rust"
homepage = "https://github.com/actix/actix/"
readme = "README.md"
keywords = ["actor", "asynchronous", "concurrency"]
categories = ["network-programming", "asynchronous"]
license = "Apache-2.0"
repository = "https://github.com/actix/actix.git"
[profile.release]
opt-level = 3
lto = true
[lib]
name = "actix"
path = "src/lib.rs"
[dependencies.crossbeam]
version = "0.3"
[dependencies.tokio-signal]
version = "0.1"
optional = true
[dependencies.log]
version = "0.3"
[dependencies.tokio-core]
version = "0.1"
[dependencies.tokio-io]
version = "0.1"
[dependencies.futures]
version = "0.1"
[dependencies.uuid]
version = "0.5"
features = ["v4"]
[dependencies.libc]
version = "0.2"
optional = true
[dev-dependencies.skeptic]
version = "0.13"
[build-dependencies.skeptic]
version = "0.13"
[features]
signal = ["tokio-signal", "libc"]
dns = ["libc"]
default = ["signal"]
[badges.travis-ci]
branch = "master"
repository = "actix/actix"
[badges.codecov]
branch = "master"
service = "github"
repository = "actix/actix"
[badges.appveyor]
repository = "fafhrd91/actix-n9e64"