summaryrefslogtreecommitdiff
path: root/test_util/Cargo.toml
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-09-14 12:21:57 -0400
committerGitHub <noreply@github.com>2023-09-14 16:21:57 +0000
commit54890ee98b9068af41214b86fb693135f0998a0a (patch)
tree9a64837d6ccfacafce6139f47c9cddb512de426d /test_util/Cargo.toml
parent851f795001a9164572d02606587ddc5193bdfd2d (diff)
chore(tests): ability to pattern match unordered lines (#20488)
This adds the ability to pattern match unordered lines. For example, the downloading messages may appear in any order ``` [UNORDERED_START] Download https://localhost:4546/a.ts Download https://localhost:4546/b.ts [UNORDERED_END] Hello! ``` Additionally, I've made the pattern matching slightly more strict and the output better.
Diffstat (limited to 'test_util/Cargo.toml')
-rw-r--r--test_util/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml
index 6ea9d870d..47f7d1d52 100644
--- a/test_util/Cargo.toml
+++ b/test_util/Cargo.toml
@@ -26,6 +26,7 @@ hyper = { workspace = true, features = ["server", "http1", "http2", "runtime"] }
lazy-regex.workspace = true
libc.workspace = true
lsp-types.workspace = true
+monch.workspace = true
nix.workspace = true
once_cell.workspace = true
os_pipe.workspace = true
@@ -41,6 +42,7 @@ serde.workspace = true
serde_json.workspace = true
tar.workspace = true
tempfile.workspace = true
+termcolor.workspace = true
tokio.workspace = true
tokio-rustls.workspace = true
url.workspace = true