0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/extensions/http/Cargo.toml

26 lines
765 B
TOML
Raw Normal View History

2021-07-12 06:44:49 -04:00
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_http"
2021-07-12 20:16:49 -04:00
version = "0.2.0"
2021-07-12 06:44:49 -04:00
edition = "2018"
description = "HTTP server implementation for Deno"
authors = ["the Deno authors"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
[lib]
path = "lib.rs"
[dependencies]
base64 = "0.13.0"
bytes = "1"
2021-07-12 20:16:49 -04:00
deno_core = { version = "0.93.0", path = "../../core" }
deno_websocket = { version = "0.16.0", path = "../websocket" }
2021-07-12 06:44:49 -04:00
hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] }
ring = "0.16.20"
serde = { version = "1.0.125", features = ["derive"] }
tokio = { version = "1.8.0", features = ["full"] }
2021-07-12 20:16:49 -04:00
tokio-util = { version = "0.6.7", features = ["io"] }