2021-01-12 02:13:41 +09:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-01-06 16:57:28 +01:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_websocket"
|
2021-07-19 20:20:42 +02:00
|
|
|
version = "0.17.0"
|
2021-01-06 16:57:28 +01:00
|
|
|
edition = "2018"
|
|
|
|
description = "Implementation of WebSocket API for Deno"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-19 20:20:42 +02:00
|
|
|
deno_core = { version = "0.94.0", path = "../../core" }
|
2021-07-09 17:15:50 +02:00
|
|
|
http = "0.2.4"
|
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
|
|
tokio = { version = "1.8.1", features = ["full"] }
|
2021-01-12 08:50:02 +01:00
|
|
|
tokio-rustls = "0.22.0"
|
2021-04-08 18:46:14 +02:00
|
|
|
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
|
2021-07-08 13:33:01 +02:00
|
|
|
hyper = { version = "0.14.9" }
|
2021-01-12 08:50:02 +01:00
|
|
|
webpki = "0.21.4"
|
2021-04-08 18:46:14 +02:00
|
|
|
webpki-roots = "0.21.1"
|