This commit is contained in:
Bartek Iwańczuk 2022-08-25 00:20:07 +02:00 committed by GitHub
parent fb1c7b7dea
commit 8986e2ced4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 153 additions and 126 deletions

View file

@ -2,7 +2,7 @@
[package]
name = "deno_flash"
version = "0.1.0"
version = "0.2.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@ -14,10 +14,10 @@ description = "Fast HTTP/1 server implementation for Deno"
path = "lib.rs"
[dependencies]
deno_core = { path = "../../core", version = "0.147.0" }
deno_tls = { version = "0.52.0", path = "../tls" }
deno_core = { path = "../../core", version = "0.148.0" }
deno_tls = { version = "0.53.0", path = "../tls" }
# For HTTP/2 and websocket upgrades
deno_websocket = { version = "0.70.0", path = "../websocket" }
deno_websocket = { version = "0.71.0", path = "../websocket" }
http = "0.2.6"
httparse = "1.7"
libc = "0.2"