diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-01-15 05:36:12 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-15 13:36:12 +0000 |
| commit | 8f321a8a39b0926e00ff9e76c44bc687f3a3c8da (patch) | |
| tree | 18ca86ba6e25dc074f5e8c0d39cf0219997743e4 /ext/webidl/Cargo.toml | |
| parent | a4c98e347215528d20e4891e4f0e54b2d8523c89 (diff) | |
chore(ext/webidl): Add dictionary converter microbenchmark (#17435)
This commits add a `webidl.createDictionaryConverter` converter
microbenchmark.
There are 2 PRs currently open that need a microbenchmark for webidl
dictionary converter. See https://github.com/denoland/deno/pull/16594
and https://github.com/denoland/deno/pull/16407
Closes https://github.com/denoland/deno/issues/17436
Diffstat (limited to 'ext/webidl/Cargo.toml')
| -rw-r--r-- | ext/webidl/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml index 744115aec..e0a90ed4d 100644 --- a/ext/webidl/Cargo.toml +++ b/ext/webidl/Cargo.toml @@ -15,3 +15,10 @@ path = "lib.rs" [dependencies] deno_core.workspace = true + +[dev-dependencies] +deno_bench_util.workspace = true + +[[bench]] +name = "dict" +harness = false |
