Rocket/lib/Cargo.toml

33 lines
712 B
TOML
Raw Normal View History

[package]
name = "rocket"
2017-01-04 17:18:49 +00:00
version = "0.1.4"
authors = ["Sergio Benitez <sb@sergio.bz>"]
2016-12-23 11:36:26 +00:00
description = """
Web framework for nightly with a focus on ease-of-use, expressability, and
speed.
"""
documentation = "https://api.rocket.rs/rocket/"
2016-12-23 11:36:26 +00:00
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
readme = "../README.md"
keywords = ["rocket", "web", "framework", "server"]
license = "MIT/Apache-2.0"
[dependencies]
term-painter = "^0.2"
log = "^0.3"
url = "^1"
toml = "^0.2"
2016-10-18 02:29:58 +00:00
# cookie = "^0.3"
2016-10-09 11:29:02 +00:00
[dependencies.hyper]
version = "^0.9"
2016-10-09 11:29:02 +00:00
default-features = false
[dev-dependencies]
2016-12-23 11:36:26 +00:00
lazy_static = "0.2"
2017-01-04 17:18:49 +00:00
rocket_codegen = { version = "0.1.4", path = "../codegen" }
[features]
testing = []