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-07-04 13:05:01 -04:00
|
|
|
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
|
|
|
|
bytes = "0.5.5"
|
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-07-04 13:05:01 -04:00
|
|
|
warp = { version = "0.2.3", features = ["tls"] }
|