mirror of https://github.com/rwf2/Rocket.git
37 lines
859 B
TOML
37 lines
859 B
TOML
[package]
|
|
name = "rocket"
|
|
version = "0.1.5"
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
description = """
|
|
Web framework for nightly with a focus on ease-of-use, expressability, 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"
|
|
|
|
[dependencies]
|
|
term-painter = "^0.2"
|
|
log = "^0.3"
|
|
url = "^1"
|
|
hyper = { version = "=0.9.14", default-features = false }
|
|
toml = { version = "^0.2", default-features = false }
|
|
num_cpus = "1"
|
|
state = "^0.2"
|
|
# cookie = "^0.3"
|
|
|
|
[dev-dependencies]
|
|
lazy_static = "0.2"
|
|
rocket_codegen = { version = "0.1.5", path = "../codegen" }
|
|
|
|
[build-dependencies]
|
|
ansi_term = "^0.9"
|
|
version_check = "^0.1"
|
|
|
|
[features]
|
|
testing = []
|