2021-01-11 12:13:41 -05:00
|
|
|
# Copyright 2018-2021 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"]
|
|
|
|
edition = "2018"
|
|
|
|
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]
|
2021-01-12 02:50:02 -05:00
|
|
|
async-stream = "0.3.0"
|
|
|
|
bytes = "1.0.1"
|
2021-04-08 12:46:14 -04:00
|
|
|
futures = "0.3.13"
|
|
|
|
hyper = { version = "0.14.5", features = ["server", "http1", "runtime"] }
|
2020-06-18 11:54:55 -04:00
|
|
|
lazy_static = "1.4.0"
|
2021-01-12 02:50:02 -05:00
|
|
|
os_pipe = "0.9.2"
|
|
|
|
regex = "1.4.3"
|
2021-04-08 12:46:14 -04:00
|
|
|
serde = { version = "1.0.125", features = ["derive"] }
|
2021-02-09 09:34:34 -05:00
|
|
|
tempfile = "3.2.0"
|
2021-03-20 11:51:27 -04:00
|
|
|
tokio = { version = "1.4.0", features = ["full"] }
|
2021-01-12 02:50:02 -05:00
|
|
|
tokio-rustls = "0.22.0"
|
2021-04-08 12:46:14 -04:00
|
|
|
tokio-tungstenite = "0.14.0"
|
2020-08-18 16:29:32 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
pty = "0.2.2"
|