summaryrefslogtreecommitdiff
path: root/ext/http/Cargo.toml
blob: dfc4bd7fcdbad3f90a651f57555c65de6446c688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.

[package]
name = "deno_http"
version = "0.30.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "HTTP server implementation for Deno"

[lib]
path = "lib.rs"

[dependencies]
base64 = "0.13.0"
bytes = "1"
deno_core = { version = "0.120.0", path = "../../core" }
deno_websocket = { version = "0.43.0", path = "../websocket" }
hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] }
percent-encoding = "2.1.0"
ring = "0.16.20"
serde = { version = "1.0.129", features = ["derive"] }
tokio = { version = "1.10.1", features = ["full"] }
tokio-util = { version = "0.6.7", features = ["io"] }