diff options
| author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-04-18 14:51:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-18 14:51:48 +0200 |
| commit | 733a00030582375c43fa156e978f25df6ecc9e9a (patch) | |
| tree | c94421a38f1e61289981994bf2d697900a4ba2fb /bench_util/Cargo.toml | |
| parent | 8fb1af14129850ce5a124572b6b8131056727594 (diff) | |
tooling(bench_util): benching and profiling utilities (#10223)
Diffstat (limited to 'bench_util/Cargo.toml')
| -rw-r--r-- | bench_util/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml new file mode 100644 index 000000000..834d0be53 --- /dev/null +++ b/bench_util/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "bench_util" +version = "0.0.0" +authors = ["the Deno authors"] +edition = "2018" +description = "Bench and profiling utilities for deno crates" +license = "MIT" +readme = "README.md" +repository = "https://github.com/denoland/deno" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +bencher = "0.1" +deno_core = { version = "0.84.0", path = "../core" } +tokio = { version = "1.4.0", features = ["full"] } |
