Add initial support for doing benchmarking and some starting info on how to build the benchmark stuff with poppler debug info

This commit is contained in:
itsjunetime
2024-06-03 22:16:05 -06:00
parent 017596a8b0
commit 7e2d0d3bea
13 changed files with 531 additions and 49 deletions
+10
View File
@@ -0,0 +1,10 @@
mod utils;
#[tokio::main]
async fn main() {
let file = std::env::args()
.nth(1)
.expect("Please enter a file to profile");
utils::render_doc(file).await;
}