2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-07-12 06:44:49 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_http"
|
2022-05-12 12:43:00 -04:00
|
|
|
version = "0.46.0"
|
2021-07-12 06:44:49 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-07-12 06:44:49 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "HTTP server implementation for Deno"
|
2021-07-12 06:44:49 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
2022-04-24 15:45:56 -04:00
|
|
|
[[bench]]
|
|
|
|
name = "compressible"
|
|
|
|
harness = false
|
|
|
|
|
2021-07-12 06:44:49 -04:00
|
|
|
[dependencies]
|
2022-05-05 06:41:59 -04:00
|
|
|
async-compression = { version = "0.3.12", features = ["tokio", "brotli", "gzip"] }
|
2021-07-12 06:44:49 -04:00
|
|
|
base64 = "0.13.0"
|
2022-05-05 06:41:59 -04:00
|
|
|
brotli = "3.3.4"
|
2021-07-12 06:44:49 -04:00
|
|
|
bytes = "1"
|
2022-03-04 00:04:39 -05:00
|
|
|
cache_control = "0.2.0"
|
2022-05-12 12:43:00 -04:00
|
|
|
deno_core = { version = "0.134.0", path = "../../core" }
|
|
|
|
deno_websocket = { version = "0.57.0", path = "../websocket" }
|
2022-05-05 06:41:59 -04:00
|
|
|
flate2 = "1.0.23"
|
2022-03-04 00:04:39 -05:00
|
|
|
fly-accept-encoding = "0.2.0-alpha.5"
|
2022-05-05 06:41:59 -04:00
|
|
|
hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] }
|
2022-03-04 00:04:39 -05:00
|
|
|
mime = "0.3.16"
|
2022-02-15 18:16:12 -05:00
|
|
|
percent-encoding = "2.1.0"
|
2022-04-24 15:45:56 -04:00
|
|
|
phf = { version = "0.10", features = ["macros"] }
|
2021-07-12 06:44:49 -04:00
|
|
|
ring = "0.16.20"
|
2022-05-05 06:41:59 -04:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2022-04-02 13:54:40 -04:00
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
2022-05-05 06:41:59 -04:00
|
|
|
tokio-util = { version = "0.7.1", features = ["io"] }
|
2022-04-24 15:45:56 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
bencher = "0.1"
|