2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2020-09-21 21:26:41 +09:00
|
|
|
|
2020-06-18 17:54:55 +02:00
|
|
|
[package]
|
2024-02-20 00:34:24 +11:00
|
|
|
name = "test_server"
|
2020-06-18 17:54:55 +02:00
|
|
|
version = "0.1.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2020-06-18 17:54:55 +02:00
|
|
|
publish = false
|
2022-11-22 21:07:35 +01:00
|
|
|
repository.workspace = true
|
2020-06-18 17:54:55 +02:00
|
|
|
|
2020-07-04 13:05:01 -04:00
|
|
|
[[bin]]
|
|
|
|
name = "test_server"
|
|
|
|
path = "src/test_server.rs"
|
2020-06-18 17:54:55 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 21:07:35 +01:00
|
|
|
anyhow.workspace = true
|
2022-05-05 12:41:59 +02:00
|
|
|
async-stream = "0.3.3"
|
2022-11-22 21:07:35 +01:00
|
|
|
base64.workspace = true
|
2023-09-15 21:51:25 +02:00
|
|
|
bytes.workspace = true
|
2023-03-28 17:49:00 -04:00
|
|
|
console_static_text.workspace = true
|
2024-04-24 12:57:34 -04:00
|
|
|
deno_unsync = "0"
|
2023-10-31 12:13:57 +01:00
|
|
|
denokv_proto.workspace = true
|
2024-11-06 19:52:46 -08:00
|
|
|
faster-hex.workspace = true
|
2023-12-26 21:53:28 +01:00
|
|
|
fastwebsockets.workspace = true
|
2023-11-11 07:20:12 -07:00
|
|
|
flate2 = { workspace = true, features = ["default"] }
|
2022-11-22 21:07:35 +01:00
|
|
|
futures.workspace = true
|
2023-05-22 13:35:59 -06:00
|
|
|
glob.workspace = true
|
2023-12-27 17:59:57 +01:00
|
|
|
h2.workspace = true
|
|
|
|
http.workspace = true
|
2023-12-27 14:38:44 +01:00
|
|
|
http-body-util.workspace = true
|
2023-12-27 17:59:57 +01:00
|
|
|
hyper.workspace = true
|
2023-12-25 17:38:48 +01:00
|
|
|
hyper-util.workspace = true
|
2024-03-13 12:21:13 -04:00
|
|
|
jsonc-parser.workspace = true
|
2023-04-13 09:08:01 +08:00
|
|
|
lazy-regex.workspace = true
|
2023-08-03 14:04:37 -06:00
|
|
|
libc.workspace = true
|
2023-03-08 18:15:20 -05:00
|
|
|
lsp-types.workspace = true
|
2023-09-14 12:21:57 -04:00
|
|
|
monch.workspace = true
|
2024-10-19 14:59:39 -07:00
|
|
|
nix = { workspace = true, features = ["fs", "term", "signal"] }
|
2022-11-22 21:07:35 +01:00
|
|
|
once_cell.workspace = true
|
|
|
|
os_pipe.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|
2023-08-22 13:56:00 +08:00
|
|
|
prost.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
regex.workspace = true
|
|
|
|
reqwest.workspace = true
|
2024-04-26 16:41:53 +01:00
|
|
|
rustls-pemfile.workspace = true
|
|
|
|
rustls-tokio-stream.workspace = true
|
2023-02-15 13:20:40 -05:00
|
|
|
semver = "=1.0.14"
|
2022-11-22 21:07:35 +01:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-15 14:49:35 -05:00
|
|
|
sha2.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
tar.workspace = true
|
2023-03-22 12:55:19 -06:00
|
|
|
tempfile.workspace = true
|
2023-09-14 12:21:57 -04:00
|
|
|
termcolor.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
tokio.workspace = true
|
|
|
|
url.workspace = true
|
2024-02-09 13:33:05 -07:00
|
|
|
win32job = "2"
|
2020-08-18 21:29:32 +01:00
|
|
|
|
2021-09-20 22:15:44 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-11-22 21:07:35 +01:00
|
|
|
winapi = { workspace = true, features = ["consoleapi", "synchapi", "handleapi", "namedpipeapi", "winbase", "winerror"] }
|
2023-08-22 13:56:00 +08:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
prost-build.workspace = true
|