1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/test_util/Cargo.toml
Yosi Pramajaya b15539587e
refactor(test_util): replace "warp" with "hyper" (#8846)
This commit rewrites "test_server" to use "hyper" 
instead of "warp" in an effort to reduce number of
dependencies.
2020-12-24 14:11:32 +01:00

27 lines
534 B
TOML

# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "test_util"
version = "0.1.0"
authors = ["the Deno authors"]
edition = "2018"
publish = false
[[bin]]
name = "test_server"
path = "src/test_server.rs"
[dependencies]
tokio = { version = "0.2.22", features = ["full"] }
futures = "0.3.8"
bytes = "0.5.6"
lazy_static = "1.4.0"
os_pipe = "0.9.2"
regex = "1.3.9"
tempfile = "3.1.0"
hyper = "0.13"
tokio-tungstenite = "0.11"
tokio-rustls = "0.14"
[target.'cfg(unix)'.dependencies]
pty = "0.2.2"