mirror of https://github.com/rwf2/Rocket.git
33 lines
712 B
TOML
33 lines
712 B
TOML
[package]
|
|
name = "rocket"
|
|
version = "0.1.2"
|
|
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"
|
|
|
|
[dependencies]
|
|
term-painter = "^0.2"
|
|
log = "^0.3"
|
|
url = "^1"
|
|
toml = "^0.2"
|
|
# cookie = "^0.3"
|
|
|
|
[dependencies.hyper]
|
|
version = "^0.9"
|
|
default-features = false
|
|
|
|
[dev-dependencies]
|
|
lazy_static = "0.2"
|
|
rocket_codegen = { version = "0.1.2", path = "../codegen" }
|
|
|
|
[features]
|
|
testing = []
|