2020-09-21 08:26:41 -04:00
|
|
|
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
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]
|
2020-07-22 18:23:52 -04:00
|
|
|
tokio = { version = "0.2.22", features = ["full"] }
|
2020-11-24 18:38:23 -05:00
|
|
|
futures = "0.3.8"
|
2020-08-12 11:09:48 -04:00
|
|
|
bytes = "0.5.6"
|
2020-06-18 11:54:55 -04:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
os_pipe = "0.9.2"
|
|
|
|
regex = "1.3.9"
|
2020-06-19 13:44:28 -04:00
|
|
|
tempfile = "3.1.0"
|
2020-12-24 08:11:32 -05:00
|
|
|
hyper = "0.13"
|
|
|
|
tokio-tungstenite = "0.11"
|
|
|
|
tokio-rustls = "0.14"
|
2020-08-18 16:29:32 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
pty = "0.2.2"
|