mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
bdffcb409f
This is a rewrite of the `Deno.serve` API to live on top of hyper 1.0-rc3. The code should be more maintainable long-term, and avoids some of the slower mpsc patterns that made the older code less efficient than it could have been. Missing features: - `upgradeHttp` and `upgradeHttpRaw` (`upgradeWebSocket` is available, however). - Automatic compression is unavailable on responses.
25 lines
608 B
TOML
25 lines
608 B
TOML
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_net"
|
|
version = "0.91.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Networking for Deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
deno_core.workspace = true
|
|
deno_tls.workspace = true
|
|
log.workspace = true
|
|
pin-project.workspace = true
|
|
serde.workspace = true
|
|
socket2.workspace = true
|
|
tokio.workspace = true
|
|
trust-dns-proto = "0.22"
|
|
trust-dns-resolver = { version = "0.22", features = ["tokio-runtime", "serde-config"] }
|