summaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2022-01-18 06:58:50 -0500
committerGitHub <noreply@github.com>2022-01-18 06:58:50 -0500
commitce52bfc59c6700e64dbe941485d078ceb9dd2158 (patch)
treea0da203cfeeae9ccf94ed90f3e035dc9596e1b6f /cli/Cargo.toml
parent39ea4abff4bfa09c4e98e00ad0d4e0e7b78f1187 (diff)
Add LSP benchmark mimicking the one on quick-lint-js (#13365)
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 824cb4da0..1e5c1781e 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -19,6 +19,11 @@ name = "deno_bench"
harness = false
path = "./bench/main.rs"
+[[bench]]
+name = "lsp_bench_standalone"
+harness = false
+path = "./bench/lsp_bench_standalone.rs"
+
[build-dependencies]
deno_broadcast_channel = { version = "0.26.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.32.0", path = "../ext/console" }
@@ -96,6 +101,7 @@ fwdansi = "=1.1.0"
winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
[dev-dependencies]
+deno_bench_util = { version = "0.26.0", path = "../bench_util" }
flaky_test = "=0.1.0"
os_pipe = "=0.9.2"
pretty_assertions = "=0.7.2"