2022-08-18 08:05:02 -04:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_flash"
|
2022-11-24 17:59:42 -05:00
|
|
|
version = "0.15.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-08-18 08:05:02 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2022-08-18 08:05:02 -04:00
|
|
|
description = "Fast HTTP/1 server implementation for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_core.workspace = true
|
|
|
|
deno_tls.workspace = true
|
2022-08-18 08:05:02 -04:00
|
|
|
# For HTTP/2 and websocket upgrades
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_websocket.workspace = true
|
|
|
|
http.workspace = true
|
2022-08-31 05:24:38 -04:00
|
|
|
httparse = "1.8"
|
2022-11-22 15:07:35 -05:00
|
|
|
libc.workspace = true
|
|
|
|
log.workspace = true
|
2022-08-18 08:05:02 -04:00
|
|
|
mio = { version = "0.8.1", features = ["os-poll", "net"] }
|
2022-11-22 15:07:35 -05:00
|
|
|
rustls.workspace = true
|
|
|
|
rustls-pemfile.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
socket2.workspace = true
|
|
|
|
tokio.workspace = true
|