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-04-02 15:19:39 +11:00
|
|
|
version = "0.7.1"
|
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-04-02 15:19:39 +11:00
|
|
|
deno_core = { version = "0.83.0", path = "../../core" }
|
2021-01-12 08:50:02 +01:00
|
|
|
http = "0.2.3"
|
2021-02-09 15:34:34 +01:00
|
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
2021-03-21 16:10:08 +01:00
|
|
|
tokio = { version = "1.4.0", features = ["full"] }
|
2021-01-12 08:50:02 +01:00
|
|
|
tokio-rustls = "0.22.0"
|
|
|
|
tokio-tungstenite = "0.13.0"
|
|
|
|
webpki = "0.21.4"
|
|
|
|
webpki-roots = "0.21.0"
|