Rocket/lib/Cargo.toml

36 lines
804 B
TOML
Raw Normal View History

[package]
name = "rocket"
2017-01-14 16:45:03 +00:00
version = "0.1.5"
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"
build = "build.rs"
[dependencies]
term-painter = "^0.2"
log = "^0.3"
url = "^1"
toml = "^0.2"
hyper = { version = "^0.9.14", default-features = false }
2017-01-12 10:38:14 +00:00
num_cpus = "1"
2016-10-18 02:29:58 +00:00
# cookie = "^0.3"
[dev-dependencies]
2016-12-23 11:36:26 +00:00
lazy_static = "0.2"
2017-01-14 16:45:03 +00:00
rocket_codegen = { version = "0.1.5", path = "../codegen" }
[build-dependencies]
ansi_term = "^0.9"
version_check = "^0.1"
[features]
testing = []