diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2020-07-04 13:05:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-04 13:05:01 -0400 |
| commit | 5f9e600c5bb78ae35a9a12d250f1d7cad79cf7a4 (patch) | |
| tree | df0085e1287912f014bf804d2070f189a367b772 /test_util/Cargo.toml | |
| parent | fca492907cb0e6b12f202681ccf36278b5bfa81a (diff) | |
chore: port http_server.py to rust (#6364)
Diffstat (limited to 'test_util/Cargo.toml')
| -rw-r--r-- | test_util/Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml index e65d2c224..b82d61b43 100644 --- a/test_util/Cargo.toml +++ b/test_util/Cargo.toml @@ -5,10 +5,16 @@ authors = ["the Deno authors"] edition = "2018" publish = false -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[[bin]] +name = "test_server" +path = "src/test_server.rs" [dependencies] +tokio = { version = "0.2.21", features = ["rt-core", "tcp", "udp", "uds", "process", "fs", "blocking", "sync", "io-std", "macros", "time"] } +futures = { version = "0.3.5", features = ["compat", "io-compat"] } +bytes = "0.5.5" lazy_static = "1.4.0" os_pipe = "0.9.2" regex = "1.3.9" tempfile = "3.1.0" +warp = { version = "0.2.3", features = ["tls"] } |
