2021-01-11 12:13:41 -05:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-01-06 10:57:28 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_websocket"
|
2021-02-05 09:08:18 -05:00
|
|
|
version = "0.4.0"
|
2021-01-06 10:57:28 -05: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-02-05 09:08:18 -05:00
|
|
|
deno_core = { version = "0.78.0", path = "../../core" }
|
2021-01-12 02:50:02 -05:00
|
|
|
http = "0.2.3"
|
2021-02-09 09:34:34 -05:00
|
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
|
|
tokio = { version = "1.2.0", features = ["full"] }
|
2021-01-12 02:50:02 -05:00
|
|
|
tokio-rustls = "0.22.0"
|
|
|
|
tokio-tungstenite = "0.13.0"
|
|
|
|
webpki = "0.21.4"
|
|
|
|
webpki-roots = "0.21.0"
|