diff options
Diffstat (limited to 'extensions/http/Cargo.toml')
-rw-r--r-- | extensions/http/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/http/Cargo.toml b/extensions/http/Cargo.toml index 8909301a6..cc2ba8b50 100644 --- a/extensions/http/Cargo.toml +++ b/extensions/http/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_http" -version = "0.1.0" +version = "0.2.0" edition = "2018" description = "HTTP server implementation for Deno" authors = ["the Deno authors"] @@ -16,10 +16,10 @@ path = "lib.rs" [dependencies] base64 = "0.13.0" bytes = "1" -deno_core = { version = "0.92.0", path = "../../core" } -deno_websocket = { version = "0.15.1", path = "../websocket" } +deno_core = { version = "0.93.0", path = "../../core" } +deno_websocket = { version = "0.16.0", path = "../websocket" } 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"] } -tokio-util = "0.6.7" +tokio-util = { version = "0.6.7", features = ["io"] } |