1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ext/http/Cargo.toml

59 lines
1.4 KiB
TOML
Raw Normal View History

# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2021-07-12 06:44:49 -04:00
[package]
name = "deno_http"
version = "0.169.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
[features]
"__http_tracing" = []
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]
async-compression = { version = "0.4", features = ["tokio", "brotli", "gzip"] }
async-trait.workspace = true
2022-11-22 15:07:35 -05:00
base64.workspace = true
brotli.workspace = true
2022-11-22 15:07:35 -05:00
bytes.workspace = true
cache_control.workspace = true
deno_core.workspace = true
deno_net.workspace = true
2022-11-22 15:07:35 -05:00
deno_websocket.workspace = true
flate2.workspace = true
http.workspace = true
http_v02.workspace = true
httparse.workspace = true
hyper.workspace = true
hyper-util.workspace = true
hyper_v014 = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] }
itertools = "0.10"
memmem.workspace = true
mime = "0.3.16"
once_cell.workspace = true
2022-11-22 15:07:35 -05:00
percent-encoding.workspace = true
phf.workspace = true
pin-project.workspace = true
2022-11-22 15:07:35 -05:00
ring.workspace = true
scopeguard.workspace = true
2022-11-22 15:07:35 -05:00
serde.workspace = true
smallvec.workspace = true
thiserror.workspace = true
2022-11-22 15:07:35 -05:00
tokio.workspace = true
tokio-util = { workspace = true, features = ["io"] }
[dev-dependencies]
2022-11-22 15:07:35 -05:00
bencher.workspace = true
http-body-util.workspace = true
rand.workspace = true