diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-07-13 02:16:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 02:16:49 +0200 |
commit | 642dd3d3c433efb56e59e64f0b75c6951153b571 (patch) | |
tree | 9d9b5fe22b96b39e97bb03f67b067f40c9bb46d5 /extensions/http | |
parent | 9c020d8c27dd57057db645a96f7b4ec924074e37 (diff) |
chore: release crates (#11378)
Diffstat (limited to 'extensions/http')
-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"] } |