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/src/lib.rs | |
parent | 8fb1af14129850ce5a124572b6b8131056727594 (diff) |
tooling(bench_util): benching and profiling utilities (#10223)
Diffstat (limited to 'bench_util/src/lib.rs')
-rw-r--r-- | bench_util/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bench_util/src/lib.rs b/bench_util/src/lib.rs new file mode 100644 index 000000000..41aaf4004 --- /dev/null +++ b/bench_util/src/lib.rs @@ -0,0 +1,6 @@ +mod js_runtime; +mod profiling; + +pub use bencher; +pub use js_runtime::*; +pub use profiling::*; // Exports bench_or_profile! macro |