/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/http/Cargo.toml
63 строки
2 KB
Nathan Whitaker
refactor(http): remove unused raw upgrade internals (#36528)
11 авг 2026, 20:00
Не верифицирован
11 авг 2026, 20:00
5edb1b8
Код
Авторство
О чём код?
# Copyright 2018-2026 the Deno authors. MIT license. [package] name = "deno_http" version = "0.255.0" authors.workspace = true edition.workspace = true license.workspace = true readme = "README.md" repository.workspace = true description = "HTTP server implementation for Deno" [features] default = ["default_property_extractor"] "__http_tracing" = [] default_property_extractor = [] [lib] path = "lib.rs" [[bench]] name = "compressible" harness = false [dependencies] async-compression = { workspace = true, features = ["tokio", "brotli", "gzip"] } async-trait.workspace = true aws-lc-rs.workspace = true base64.workspace = true brotli.workspace = true bytes.workspace = true deno_core.workspace = true deno_error.workspace = true deno_http_h1.workspace = true deno_net.workspace = true deno_telemetry.workspace = true deno_websocket.workspace = true flate2.workspace = true http.workspace = true http-body-util = { workspace = true, features = ["channel"] } httpdate.workspace = true hyper.workspace = true hyper-util.workspace = true itertools.workspace = true log.workspace = true mime.workspace = true once_cell.workspace = true percent-encoding.workspace = true phf.workspace = true pin-project.workspace = true scopeguard.workspace = true smallvec.workspace = true thiserror.workspace = true tokio.workspace = true tokio-util = { workspace = true, features = ["io"] } [target.'cfg(any(target_os = "android", target_os = "linux", target_os = "macos"))'.dependencies] tokio-vsock.workspace = true [dev-dependencies] bencher.workspace = true http-body-util.workspace = true rand.workspace = true