summaryrefslogtreecommitdiff
path: root/engine/Cargo.toml
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-08-25 15:41:40 +0200
committerHampusM <hampus@hampusmat.com>2026-08-25 15:41:40 +0200
commit4d011687e5e65b97168610659bc79330983cf59b (patch)
tree69166d4ba315e0c749305dee1a1f851a557093ca /engine/Cargo.toml
parente8df35e08e43b0fe4178267544bb0a0834267598 (diff)
perf(engine): optimize wavefront obj parsing
Diffstat (limited to 'engine/Cargo.toml')
-rw-r--r--engine/Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/engine/Cargo.toml b/engine/Cargo.toml
index 31fa6eb..63c86ea 100644
--- a/engine/Cargo.toml
+++ b/engine/Cargo.toml
@@ -52,3 +52,12 @@ build-rs = "0.3.4"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
+[dev-dependencies.criterion]
+version = "0.5.1"
+default-features = false
+features = ["cargo_bench_support"]
+
+[[bench]]
+name = "wavefront_obj"
+path = "benches/file_format/wavefront_obj.rs"
+harness = false