[package] name = "rustful" version = "0.9.0" #automatically updated authors = ["Erik Hedvall "] exclude = ["scripts/*", "examples/*", ".travis.yml", "appveyor.yml", ".gitignore", "CHANGELOG.md", "version.sh"] description = "A light HTTP framework, with some REST-like features and the ambition of being simple, modular and non-intrusive." documentation = "http://ogeon.github.io/docs/rustful/master/rustful/index.html" repository = "https://github.com/Ogeon/rustful" readme = "README.md" keywords = ["web", "rest", "framework", "http", "routing"] license = "MIT" build = "build/main.rs" [lib] name = "rustful" path = "src/lib.rs" [features] default = ["rustc_json_body", "ssl", "multipart"] rustc_json_body = ["rustc-serialize"] ssl = ["hyper/ssl"] #internal benchmark = [] strict = [] [dependencies] time = "0.1" url = "1" anymap = "0.12" phf = "0.7" num_cpus = "0.2" [dependencies.hyper] version = "0.9" default-features = false [dependencies.multipart] #feature version = "0.7" default-features = false features = ["server"] optional = true [dependencies.rustc-serialize] version = "0.3" optional = true [dev-dependencies] unicase = "1.0" log = "0.3" env_logger = "0.3" [build-dependencies] phf_codegen = "0.7"