2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2021-01-06 10:57:28 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_websocket"
|
2023-12-21 13:43:52 -05:00
|
|
|
version = "0.134.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-01-06 10:57:28 -05:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
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]
|
2023-04-22 13:48:21 -04:00
|
|
|
bytes.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_core.workspace = true
|
2023-04-22 13:48:21 -04:00
|
|
|
deno_net.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_tls.workspace = true
|
2023-12-26 15:53:28 -05:00
|
|
|
fastwebsockets.workspace = true
|
2023-12-27 11:59:57 -05:00
|
|
|
h2.workspace = true
|
|
|
|
http.workspace = true
|
2023-12-27 08:38:44 -05:00
|
|
|
http-body-util.workspace = true
|
2023-12-27 11:59:57 -05:00
|
|
|
hyper.workspace = true
|
2023-12-26 05:20:49 -05:00
|
|
|
hyper-util.workspace = true
|
2023-06-08 06:55:33 -04:00
|
|
|
once_cell.workspace = true
|
2023-10-31 11:34:45 -04:00
|
|
|
rustls-tokio-stream.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
serde.workspace = true
|
|
|
|
tokio.workspace = true
|