2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-09-21 08:26:41 -04:00
|
|
|
|
2020-06-18 11:54:55 -04:00
|
|
|
[package]
|
|
|
|
name = "test_util"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2020-06-18 11:54:55 -04:00
|
|
|
publish = false
|
|
|
|
|
2020-07-04 13:05:01 -04:00
|
|
|
[[bin]]
|
|
|
|
name = "test_server"
|
|
|
|
path = "src/test_server.rs"
|
2020-06-18 11:54:55 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-04 17:08:04 -05:00
|
|
|
anyhow = "1.0.55"
|
2021-07-09 11:15:50 -04:00
|
|
|
async-stream = "0.3.2"
|
2021-09-20 22:15:44 -04:00
|
|
|
atty = "0.2.14"
|
2021-09-08 00:18:11 -04:00
|
|
|
base64 = "0.13.0"
|
2022-03-04 17:08:04 -05:00
|
|
|
futures = "0.3.21"
|
2021-10-25 12:41:06 -04:00
|
|
|
hyper = { version = "0.14.12", features = ["server", "http1", "http2", "runtime"] }
|
2020-06-18 11:54:55 -04:00
|
|
|
lazy_static = "1.4.0"
|
2022-04-01 11:15:37 -04:00
|
|
|
once_cell = "1.10.0"
|
2022-03-11 13:20:14 -05:00
|
|
|
os_pipe = "1.0.1"
|
2022-04-08 12:31:47 -04:00
|
|
|
parking_lot = "0.12.0"
|
2022-03-15 18:15:56 -04:00
|
|
|
pretty_assertions = "=1.2.0"
|
2022-03-08 11:30:17 -05:00
|
|
|
regex = "1.5.5"
|
2021-12-06 18:48:11 -05:00
|
|
|
rustls-pemfile = "0.2.1"
|
2021-07-09 11:15:50 -04:00
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
2021-09-02 17:38:44 -04:00
|
|
|
serde_json = "1.0.65"
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-12-06 18:48:11 -05:00
|
|
|
tokio-rustls = "0.23"
|
|
|
|
tokio-tungstenite = "0.16"
|
2020-08-18 16:29:32 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
pty = "0.2.2"
|
2021-09-20 22:15:44 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3.9", features = ["consoleapi", "handleapi", "namedpipeapi", "winbase", "winerror"] }
|