2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-01-06 10:57:28 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_websocket"
|
2022-03-16 21:40:31 -04:00
|
|
|
version = "0.47.0"
|
2021-01-06 10:57:28 -05:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-01-06 10:57:28 -05:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Implementation of WebSocket API for Deno"
|
2021-01-06 10:57:28 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-16 21:40:31 -04:00
|
|
|
deno_core = { version = "0.124.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.29.0", path = "../tls" }
|
2021-07-09 11:15:50 -04:00
|
|
|
http = "0.2.4"
|
2021-09-02 17:38:44 -04:00
|
|
|
hyper = { version = "0.14.12" }
|
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-12-06 18:48:11 -05:00
|
|
|
tokio-rustls = "0.23.0"
|
|
|
|
tokio-tungstenite = { version = "0.16.0", features = ["rustls-tls-webpki-roots"] }
|