Rocket/lib/Cargo.toml
Sergio Benitez c58ca894b7 Initial implementation of content negotiation via Accept.
This is a breaking change.

This commit changes the meaning of the `format` route attribute when
used on non-payload carrying requests (GET, HEAD, CONNECT, TRACE, and
OPTIONS) so that it matches against the preferred media type in the
`Accept` header of the request. The preferred media type is computed
according to the HTTP 1.1 RFC, barring a few specificty rules to come.
2017-03-29 04:08:53 -07:00

46 lines
1.1 KiB
TOML

[package]
name = "rocket"
version = "0.2.3"
authors = ["Sergio Benitez <sb@sergio.bz>"]
description = """
Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
"""
documentation = "https://api.rocket.rs/rocket/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
readme = "../README.md"
keywords = ["rocket", "web", "framework", "server"]
license = "MIT/Apache-2.0"
build = "build.rs"
categories = ["web-programming::http-server"]
[features]
testing = []
[dependencies]
term-painter = "0.2"
log = "0.3"
url = "1"
hyper = { version = "0.10.4", default-features = false }
toml = { version = "0.2", default-features = false }
num_cpus = "1"
state = "0.2"
time = "0.1"
memchr = "1"
base64 = "0.4"
smallvec = { git = "https://github.com/SergioBenitez/rust-smallvec" }
pear = "0.0.8"
pear_codegen = "0.0.8"
[dependencies.cookie]
version = "0.7.2"
features = ["percent-encode", "secure"]
[dev-dependencies]
lazy_static = "0.2"
rocket_codegen = { version = "0.2.3", path = "../codegen" }
[build-dependencies]
ansi_term = "0.9"
version_check = "^0.1"