0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-31 03:36:06 -05:00
denoland-deno/extensions/websocket/Cargo.toml

25 lines
709 B
TOML
Raw Normal View History

# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_websocket"
2021-07-26 15:45:40 +02:00
version = "0.18.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "Implementation of WebSocket API for Deno"
[lib]
path = "lib.rs"
[dependencies]
2021-07-26 15:45:40 +02:00
deno_core = { version = "0.95.0", path = "../../core" }
deno_tls = { version = "0.1.0", path = "../tls" }
2021-07-09 17:15:50 +02:00
http = "0.2.4"
hyper = { version = "0.14.9" }
2021-07-09 17:15:50 +02:00
serde = { version = "1.0.126", features = ["derive"] }
tokio = { version = "1.8.1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }