diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-06-18 17:54:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-18 11:54:55 -0400 |
| commit | 90c5dcfe79cd010b429e775a3ebcb3c5d78fa6ff (patch) | |
| tree | 461a23f50869c7cbe9bf621c60d11bd3eaaa8800 /Cargo.lock | |
| parent | a2969ecd27645bafc7195baa7cfecbebfd8d2bf4 (diff) | |
chore(test): move testing utilities to test_util crate (#6360)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 942210ca1..c80d6a47c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -474,6 +474,7 @@ dependencies = [ "sys-info", "tempfile", "termcolor", + "test_util", "tokio", "tokio-rustls", "tokio-tungstenite", @@ -2514,6 +2515,17 @@ version = "0.0.1" dependencies = [ "deno_core", "futures 0.3.5", + "test_util", +] + +[[package]] +name = "test_util" +version = "0.1.0" +dependencies = [ + "lazy_static", + "os_pipe", + "regex", + "tempfile", ] [[package]] |
