mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
34 lines
1,014 B
TOML
34 lines
1,014 B
TOML
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_websocket"
|
|
version = "0.134.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Implementation of WebSocket API for Deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
bytes.workspace = true
|
|
deno_core.workspace = true
|
|
deno_net.workspace = true
|
|
deno_tls.workspace = true
|
|
fastwebsockets = { workspace = true, features = ["upgrade", "unstable-split"] }
|
|
fastwebsockets_06 = { package = "fastwebsockets", version = "0.6", features = ["upgrade", "unstable-split"] }
|
|
h2.workspace = true
|
|
h2_04 = { package = "h2", version = "0.4" }
|
|
http.workspace = true
|
|
http-body-util = "0.1"
|
|
http_1 = { package = "http", version = "1.0" }
|
|
hyper = { workspace = true, features = ["backports"] }
|
|
hyper-util.workspace = true
|
|
hyper1.workspace = true
|
|
once_cell.workspace = true
|
|
rustls-tokio-stream.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|