2016-03-07 19:28:04 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket"
|
2018-10-31 20:29:22 +00:00
|
|
|
version = "0.4.0-rc.1"
|
2016-03-07 19:28:04 +00:00
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
2016-12-23 11:36:26 +00:00
|
|
|
description = """
|
2017-02-06 04:21:57 +00:00
|
|
|
Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
|
2016-12-23 11:36:26 +00:00
|
|
|
"""
|
2018-10-27 04:20:12 +00:00
|
|
|
documentation = "https://api.rocket.rs/v0.4/rocket/"
|
2016-12-23 11:36:26 +00:00
|
|
|
homepage = "https://rocket.rs"
|
|
|
|
repository = "https://github.com/SergioBenitez/Rocket"
|
2018-06-03 17:39:32 +00:00
|
|
|
readme = "../../README.md"
|
2016-12-23 11:36:26 +00:00
|
|
|
keywords = ["rocket", "web", "framework", "server"]
|
|
|
|
license = "MIT/Apache-2.0"
|
2017-01-15 09:16:47 +00:00
|
|
|
build = "build.rs"
|
2017-01-31 10:01:51 +00:00
|
|
|
categories = ["web-programming::http-server"]
|
2016-03-07 19:28:04 +00:00
|
|
|
|
2017-03-08 11:28:12 +00:00
|
|
|
[features]
|
2018-06-07 13:34:47 +00:00
|
|
|
tls = ["rocket_http/tls"]
|
2017-03-08 11:28:12 +00:00
|
|
|
|
2016-03-07 19:28:04 +00:00
|
|
|
[dependencies]
|
2018-10-31 20:29:22 +00:00
|
|
|
rocket_codegen = { version = "0.4.0-rc.1", path = "../codegen" }
|
|
|
|
rocket_http = { version = "0.4.0-rc.1", path = "../http" }
|
2018-02-21 08:37:31 +00:00
|
|
|
yansi = "0.4"
|
2018-01-29 21:16:04 +00:00
|
|
|
log = "0.4"
|
2018-09-26 02:41:10 +00:00
|
|
|
toml = "0.4.7"
|
2017-10-10 03:15:18 +00:00
|
|
|
num_cpus = "1.0"
|
2018-04-29 01:23:01 +00:00
|
|
|
state = "0.4.1"
|
2017-03-08 11:28:12 +00:00
|
|
|
time = "0.1"
|
2018-07-17 21:06:20 +00:00
|
|
|
memchr = "2" # TODO: Use pear instead.
|
2018-01-05 10:00:26 +00:00
|
|
|
base64 = "0.9"
|
2018-10-28 11:18:39 +00:00
|
|
|
pear = "0.1"
|
2017-06-20 01:29:26 +00:00
|
|
|
isatty = "0.1"
|
2017-04-19 09:23:06 +00:00
|
|
|
|
2016-10-04 10:54:24 +00:00
|
|
|
[dev-dependencies]
|
2018-06-07 13:34:47 +00:00
|
|
|
# TODO: Find a way to not depend on this.
|
2018-01-05 10:00:26 +00:00
|
|
|
lazy_static = "1.0"
|
2016-10-16 10:16:16 +00:00
|
|
|
|
2017-01-15 09:16:47 +00:00
|
|
|
[build-dependencies]
|
2018-02-21 08:37:31 +00:00
|
|
|
yansi = "0.4"
|
2017-07-12 11:15:30 +00:00
|
|
|
version_check = "0.1.3"
|
2017-06-30 09:41:00 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|