diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-03-24 11:23:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 11:23:40 +0100 |
commit | 6516130b0138ef382a0588f983287fb463222086 (patch) | |
tree | f250150295fb4d7a023c1fa7d92da621ac804340 /bench_util/lib.rs | |
parent | c52d72e8e115f30be32cbb2a91a4c3aa117c328c (diff) |
chore: drop src/ in bench_util & serde_v8 (#14097)
To align with conventions used in our other crates
Diffstat (limited to 'bench_util/lib.rs')
-rw-r--r-- | bench_util/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bench_util/lib.rs b/bench_util/lib.rs new file mode 100644 index 000000000..1dfb06ae0 --- /dev/null +++ b/bench_util/lib.rs @@ -0,0 +1,7 @@ +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +mod js_runtime; +mod profiling; + +pub use bencher; +pub use js_runtime::*; +pub use profiling::*; // Exports bench_or_profile! macro |