1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/ext/http/Cargo.toml

41 lines
1 KiB
TOML
Raw Normal View History

# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
2021-07-12 06:44:49 -04:00
[package]
name = "deno_http"
version = "0.74.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
description = "HTTP server implementation for Deno"
2021-07-12 06:44:49 -04:00
[lib]
path = "lib.rs"
[[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
fly-accept-encoding = "0.2.0"
2022-11-22 15:07:35 -05:00
hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] }
mime = "0.3.16"
2022-11-22 15:07:35 -05:00
percent-encoding.workspace = true
phf = { version = "0.10", features = ["macros"] }
2022-11-22 15:07:35 -05:00
ring.workspace = true
serde.workspace = true
tokio.workspace = true
tokio-util = { workspace = true, features = ["io"] }
[dev-dependencies]
2022-11-22 15:07:35 -05:00
bencher.workspace = true