diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-06 16:57:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 16:57:28 +0100 |
commit | 2e18fcebcc2ee931ee952ac2fe2175d6ec7acf69 (patch) | |
tree | 352e53d98cd46604e7661ba26df51dc9c0498b2a /op_crates/websocket/Cargo.toml | |
parent | 1959aca2a978642b73ea815b9b89dd3219830cef (diff) |
refactor: move WebSocket API to an op_crate (#9026)
Diffstat (limited to 'op_crates/websocket/Cargo.toml')
-rw-r--r-- | op_crates/websocket/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/op_crates/websocket/Cargo.toml b/op_crates/websocket/Cargo.toml new file mode 100644 index 000000000..20fba9804 --- /dev/null +++ b/op_crates/websocket/Cargo.toml @@ -0,0 +1,24 @@ +# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_websocket" +version = "0.1.0" +edition = "2018" +description = "Implementation of WebSocket API for Deno" +authors = ["the Deno authors"] +license = "MIT" +readme = "README.md" +repository = "https://github.com/denoland/deno" + +[lib] +path = "lib.rs" + +[dependencies] +deno_core = { version = "0.75.0", path = "../../core" } +http = "0.2.1" +tokio = { version = "0.2.22", features = ["full"] } +tokio-rustls = "0.14.1" +tokio-tungstenite = "0.11.0" +serde = { version = "1.0.116", features = ["derive"] } +webpki = "0.21.3" +webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'. |