1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-18 05:41:50 +01:00
actix-web/Cargo.toml

66 lines
1.4 KiB
TOML
Raw Normal View History

2017-09-30 09:10:03 -07:00
[package]
2017-10-14 07:59:35 -07:00
name = "actix-web"
2017-09-30 09:10:03 -07:00
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2017-10-14 07:59:35 -07:00
description = "Actix web framework"
2017-09-30 09:10:03 -07:00
readme = "README.md"
2017-10-14 07:59:35 -07:00
keywords = ["actor", "http", "web"]
homepage = "https://github.com/fafhrd91/actix-web"
repository = "https://github.com/fafhrd91/actix-web.git"
2017-09-30 09:10:03 -07:00
categories = ["network-programming", "asynchronous"]
license = "Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
2017-10-16 13:16:54 -07:00
[badges]
travis-ci = { repository = "fafhrd91/actix-web", branch = "master" }
appveyor = { repository = "fafhrd91/actix-web" }
codecov = { repository = "fafhrd91/actix-web", branch = "master", service = "github" }
2017-09-30 09:10:03 -07:00
[lib]
2017-10-14 07:59:35 -07:00
name = "actix_web"
2017-09-30 09:10:03 -07:00
path = "src/lib.rs"
2017-10-22 21:52:01 -07:00
[features]
default = []
# http/2
http2 = ["h2"]
2017-09-30 09:10:03 -07:00
[dependencies]
2017-10-18 23:43:50 -07:00
log = "0.3"
2017-10-06 21:48:14 -07:00
time = "0.1"
http = "0.1"
2017-10-07 21:48:00 -07:00
httparse = "0.1"
http-range = "0.1"
2017-10-18 23:43:50 -07:00
mime = "0.3"
2017-10-16 01:19:23 -07:00
mime_guess = "1.8"
cookie = { version="0.10", features=["percent-encode"] }
regex = "0.2"
2017-10-07 21:48:00 -07:00
slab = "0.4"
sha1 = "0.2"
2017-10-08 14:56:51 -07:00
url = "1.5"
2017-10-06 21:48:14 -07:00
2017-09-30 09:10:03 -07:00
# tokio
bytes = "0.4"
futures = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"
2017-10-06 21:48:14 -07:00
tokio-proto = "0.1"
2017-10-22 21:52:01 -07:00
h2 = { git = 'https://github.com/carllerche/h2', optional = true }
2017-09-30 09:10:03 -07:00
[dependencies.actix]
2017-10-20 17:16:17 -07:00
#path = "../actix"
2017-10-22 21:52:01 -07:00
git = "https://github.com/actix/actix.git"
2017-10-19 16:22:21 -07:00
#version = "0.2"
2017-10-16 13:16:54 -07:00
default-features = false
features = []
2017-09-30 09:10:03 -07:00
[dev-dependencies]
env_logger = "*"
2017-10-22 12:48:43 -07:00
reqwest = "0.8"
2017-09-30 09:10:03 -07:00
[profile.release]
lto = true
opt-level = 3
debug = true