summaryrefslogtreecommitdiff
path: root/test_util/Cargo.toml
blob: b1750c5995434832d97a33c330440b07831d7b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 2018-2021 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]
anyhow = "1.0.40"
async-stream = "0.3.0"
bytes = "1.0.1"
futures = "0.3.13"
hyper = { version = "0.14.5", features = ["server", "http1", "runtime"] }
lazy_static = "1.4.0"
os_pipe = "0.9.2"
regex = "1.4.3"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
tempfile = "3.2.0"
tokio = { version = "1.6.0", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = "0.14.0"

[target.'cfg(unix)'.dependencies]
pty = "0.2.2"