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

32 lines
908 B
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"
2022-03-10 09:29:14 -05:00
version = "0.34.0"
2021-07-12 06:44:49 -04:00
authors = ["the Deno authors"]
edition = "2021"
2021-07-12 06:44:49 -04:00
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "HTTP server implementation for Deno"
2021-07-12 06:44:49 -04:00
[lib]
path = "lib.rs"
[dependencies]
base64 = "0.13.0"
brotli = "3.3.3"
2021-07-12 06:44:49 -04:00
bytes = "1"
cache_control = "0.2.0"
2022-03-10 09:29:14 -05:00
deno_core = { version = "0.122.0", path = "../../core" }
deno_websocket = { version = "0.45.0", path = "../websocket" }
flate2 = "1.0.22"
fly-accept-encoding = "0.2.0-alpha.5"
2021-07-12 06:44:49 -04:00
hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] }
mime = "0.3.16"
percent-encoding = "2.1.0"
2021-07-12 06:44:49 -04:00
ring = "0.16.20"
serde = { version = "1.0.129", features = ["derive"] }
tokio = { version = "1.10.1", features = ["full"] }
2021-07-12 20:16:49 -04:00
tokio-util = { version = "0.6.7", features = ["io"] }