2016-03-07 19:28:04 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket"
|
2019-05-13 23:18:48 +00:00
|
|
|
version = "0.5.0-dev"
|
2016-03-07 19:28:04 +00:00
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
2016-12-23 11:36:26 +00:00
|
|
|
description = """
|
2020-07-21 21:28:49 +00:00
|
|
|
Web framework with a focus on usability, security, extensibility, and speed.
|
2016-12-23 11:36:26 +00:00
|
|
|
"""
|
2020-10-21 11:54:24 +00:00
|
|
|
documentation = "https://api.rocket.rs/master/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"]
|
2020-06-04 05:36:42 +00:00
|
|
|
license = "MIT OR 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"]
|
2019-06-13 01:48:02 +00:00
|
|
|
edition = "2018"
|
2016-03-07 19:28:04 +00:00
|
|
|
|
2018-12-01 04:58:20 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
|
2017-03-08 11:28:12 +00:00
|
|
|
[features]
|
2020-09-03 05:41:31 +00:00
|
|
|
default = []
|
2018-06-07 13:34:47 +00:00
|
|
|
tls = ["rocket_http/tls"]
|
2020-07-22 19:21:19 +00:00
|
|
|
secrets = ["rocket_http/private-cookies"]
|
2017-03-08 11:28:12 +00:00
|
|
|
|
2016-03-07 19:28:04 +00:00
|
|
|
[dependencies]
|
2019-05-13 23:18:48 +00:00
|
|
|
rocket_codegen = { version = "0.5.0-dev", path = "../codegen" }
|
|
|
|
rocket_http = { version = "0.5.0-dev", path = "../http" }
|
2020-02-03 08:30:22 +00:00
|
|
|
futures = "0.3.0"
|
2018-11-30 17:00:16 +00:00
|
|
|
yansi = "0.5"
|
2019-06-30 16:45:17 +00:00
|
|
|
log = { version = "0.4", features = ["std"] }
|
2017-10-10 03:15:18 +00:00
|
|
|
num_cpus = "1.0"
|
2018-04-29 01:23:01 +00:00
|
|
|
state = "0.4.1"
|
2020-05-27 04:37:30 +00:00
|
|
|
time = "0.2.11"
|
2018-07-17 21:06:20 +00:00
|
|
|
memchr = "2" # TODO: Use pear instead.
|
2020-02-15 01:14:37 +00:00
|
|
|
binascii = "0.1"
|
2019-02-09 11:29:02 +00:00
|
|
|
atty = "0.2"
|
2020-01-31 04:47:57 +00:00
|
|
|
async-trait = "0.1"
|
2020-06-28 20:23:34 +00:00
|
|
|
ref-cast = "1.0"
|
2020-09-11 08:20:44 +00:00
|
|
|
atomic = "0.5"
|
2020-10-15 04:37:16 +00:00
|
|
|
parking_lot = "0.11"
|
2020-09-03 05:41:31 +00:00
|
|
|
ubyte = {version = "0.10", features = ["serde"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-12-23 20:37:54 +00:00
|
|
|
figment = { version = "0.10", features = ["toml", "env"] }
|
2020-09-03 05:41:31 +00:00
|
|
|
rand = "0.7"
|
|
|
|
either = "1"
|
2020-07-16 12:46:20 +00:00
|
|
|
|
2020-07-09 05:05:54 +00:00
|
|
|
[dependencies.tokio]
|
2020-12-24 01:02:40 +00:00
|
|
|
version = "1.0"
|
|
|
|
features = ["fs", "io-std", "io-util", "rt-multi-thread", "sync", "signal", "macros"]
|
2020-07-09 05:05:54 +00:00
|
|
|
|
2017-01-15 09:16:47 +00:00
|
|
|
[build-dependencies]
|
2018-11-30 17:00:16 +00:00
|
|
|
yansi = "0.5"
|
2019-05-24 08:47:49 +00:00
|
|
|
version_check = "0.9.1"
|
2017-06-30 09:41:00 +00:00
|
|
|
|
2018-12-01 04:58:20 +00:00
|
|
|
[dev-dependencies]
|
2020-07-21 19:06:06 +00:00
|
|
|
bencher = "0.1"
|
2020-12-23 20:37:54 +00:00
|
|
|
figment = { version = "0.10", features = ["test"] }
|
2020-07-21 19:06:06 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "format-routing"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "ranked-routing"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "simple-routing"
|
|
|
|
harness = false
|