Rocket/core/lib/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "rocket"
2018-10-31 20:29:22 +00:00
version = "0.4.0-rc.1"
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"
build = "build.rs"
2017-01-31 10:01:51 +00:00
categories = ["web-programming::http-server"]
[features]
tls = ["rocket_http/tls"]
private-cookies = ["rocket_http/private-cookies"]
[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"
log = "0.4"
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"
time = "0.1"
memchr = "2" # TODO: Use pear instead.
base64 = "0.9"
2018-10-28 11:18:39 +00:00
pear = "0.1"
isatty = "0.1"
[dev-dependencies]
# TODO: Find a way to not depend on this.
lazy_static = "1.0"
[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