2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-07-12 12:44:49 +02:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_http"
|
2022-09-22 15:58:43 -04:00
|
|
|
version = "0.64.0"
|
2021-07-12 12:44:49 +02:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 15:03:37 +01:00
|
|
|
edition = "2021"
|
2021-07-12 12:44:49 +02: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 12:44:49 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
2022-04-24 16:45:56 -03:00
|
|
|
[[bench]]
|
|
|
|
name = "compressible"
|
|
|
|
harness = false
|
|
|
|
|
2021-07-12 12:44:49 +02:00
|
|
|
[dependencies]
|
2022-05-05 12:41:59 +02:00
|
|
|
async-compression = { version = "0.3.12", features = ["tokio", "brotli", "gzip"] }
|
2021-07-12 12:44:49 +02:00
|
|
|
base64 = "0.13.0"
|
2022-05-05 12:41:59 +02:00
|
|
|
brotli = "3.3.4"
|
2021-07-12 12:44:49 +02:00
|
|
|
bytes = "1"
|
2022-03-04 16:04:39 +11:00
|
|
|
cache_control = "0.2.0"
|
2022-09-22 15:58:43 -04:00
|
|
|
deno_core = { version = "0.152.0", path = "../../core" }
|
|
|
|
deno_websocket = { version = "0.75.0", path = "../websocket" }
|
2022-05-05 12:41:59 +02:00
|
|
|
flate2 = "1.0.23"
|
2022-05-18 16:14:23 +02:00
|
|
|
fly-accept-encoding = "0.2.0"
|
2022-05-05 12:41:59 +02:00
|
|
|
hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] }
|
2022-03-04 16:04:39 +11:00
|
|
|
mime = "0.3.16"
|
2022-09-08 18:04:59 +01:00
|
|
|
percent-encoding = "2.2.0"
|
2022-04-24 16:45:56 -03:00
|
|
|
phf = { version = "0.10", features = ["macros"] }
|
2021-07-12 12:44:49 +02:00
|
|
|
ring = "0.16.20"
|
2022-05-05 12:41:59 +02:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2022-09-16 19:11:30 -04:00
|
|
|
tokio = { version = "1.21", features = ["full"] }
|
|
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
2022-04-24 16:45:56 -03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
bencher = "0.1"
|