2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 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"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2020-06-18 11:54:55 -04:00
|
|
|
publish = false
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2020-06-18 11:54:55 -04:00
|
|
|
|
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]
|
2022-11-22 15:07:35 -05:00
|
|
|
anyhow.workspace = true
|
2022-05-05 06:41:59 -04:00
|
|
|
async-stream = "0.3.3"
|
2022-11-22 15:07:35 -05:00
|
|
|
atty.workspace = true
|
2023-02-28 14:10:12 -05:00
|
|
|
backtrace = "0.3.67"
|
2022-11-22 15:07:35 -05:00
|
|
|
base64.workspace = true
|
|
|
|
flate2.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
hyper = { workspace = true, features = ["server", "http1", "http2", "runtime"] }
|
2020-06-18 11:54:55 -04:00
|
|
|
lazy_static = "1.4.0"
|
2023-03-08 18:15:20 -05:00
|
|
|
lsp-types.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
once_cell.workspace = true
|
|
|
|
os_pipe.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|
|
|
|
regex.workspace = true
|
|
|
|
reqwest.workspace = true
|
|
|
|
ring.workspace = true
|
|
|
|
rustls-pemfile.workspace = true
|
2023-02-15 13:20:40 -05:00
|
|
|
semver = "=1.0.14"
|
2022-11-22 15:07:35 -05:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
tar.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tokio-rustls.workspace = true
|
|
|
|
tokio-tungstenite.workspace = true
|
|
|
|
url.workspace = true
|
2020-08-18 16:29:32 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2022-12-19 13:12:45 -05:00
|
|
|
pty2 = "0.1.0"
|
2021-09-20 22:15:44 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
winapi = { workspace = true, features = ["consoleapi", "synchapi", "handleapi", "namedpipeapi", "winbase", "winerror"] }
|