2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2021-07-12 06:44:49 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_http"
|
2023-02-03 11:26:43 -05:00
|
|
|
version = "0.83.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-07-12 06:44:49 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
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"] }
|
2022-11-22 15:07:35 -05:00
|
|
|
base64.workspace = true
|
2022-05-05 06:41:59 -04:00
|
|
|
brotli = "3.3.4"
|
2022-11-22 15:07:35 -05:00
|
|
|
bytes.workspace = true
|
|
|
|
cache_control.workspace = true
|
|
|
|
deno_core.workspace = true
|
|
|
|
deno_websocket.workspace = true
|
|
|
|
flate2.workspace = true
|
2022-05-18 10:14:23 -04:00
|
|
|
fly-accept-encoding = "0.2.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] }
|
2022-03-04 00:04:39 -05:00
|
|
|
mime = "0.3.16"
|
2022-11-22 15:07:35 -05:00
|
|
|
percent-encoding.workspace = true
|
2022-04-24 15:45:56 -04:00
|
|
|
phf = { version = "0.10", features = ["macros"] }
|
2022-12-20 03:46:45 -05:00
|
|
|
pin-project.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
ring.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tokio-util = { workspace = true, features = ["io"] }
|
2022-04-24 15:45:56 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
bencher.workspace = true
|