diff options
| author | Luca Casonato <hello@lcas.dev> | 2021-07-12 12:44:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-12 12:44:49 +0200 |
| commit | f649960f87a408124b5b0d6f55f3be7f5724a4e7 (patch) | |
| tree | 0a303a918828f602623c64c50a912645df55b772 /extensions/http/Cargo.toml | |
| parent | 6460eadaa178b3a9d09d04205977e4f659fe8fff (diff) | |
refactor: deno_http op crate (#11335)
Diffstat (limited to 'extensions/http/Cargo.toml')
| -rw-r--r-- | extensions/http/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extensions/http/Cargo.toml b/extensions/http/Cargo.toml new file mode 100644 index 000000000..8909301a6 --- /dev/null +++ b/extensions/http/Cargo.toml @@ -0,0 +1,25 @@ +# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_http" +version = "0.1.0" +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" +deno_core = { version = "0.92.0", path = "../../core" } +deno_websocket = { version = "0.15.1", 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" |
