1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00
actix-web/Cargo.toml

71 lines
1.5 KiB
TOML
Raw Normal View History

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