2021-01-11 12:13:41 -05:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-01-06 10:57:28 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_websocket"
|
2021-08-23 15:48:08 -04:00
|
|
|
version = "0.21.0"
|
2021-01-06 10:57:28 -05:00
|
|
|
authors = ["the Deno authors"]
|
2021-08-02 10:19:27 -04:00
|
|
|
edition = "2018"
|
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]
|
2021-08-23 15:48:08 -04:00
|
|
|
deno_core = { version = "0.98.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.3.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-01-12 02:50:02 -05:00
|
|
|
tokio-rustls = "0.22.0"
|
2021-04-08 12:46:14 -04:00
|
|
|
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
|