From 0ee5d865a1eaf8b409c2b310ab16ee5f42a0f14a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 20 Aug 2026 03:38:20 +0800 Subject: feat: add dispatch benchmark subproject --- dev/bench/dispatch/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 dev/bench/dispatch/Cargo.toml (limited to 'dev/bench/dispatch/Cargo.toml') diff --git a/dev/bench/dispatch/Cargo.toml b/dev/bench/dispatch/Cargo.toml new file mode 100644 index 0000000..ed5c46f --- /dev/null +++ b/dev/bench/dispatch/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "mingling_bench" +version = "0.1.0" +edition = "2024" +publish = false +description = "Workspace-internal dispatch-strategy benchmark: linear list vs char trie vs perfect hash" + +[dependencies] +mingling = { path = "../../../mingling" } +mingling_macros = { path = "../../../mingling_macros", features = ["bench_support"] } +prettytable-rs = "0.10" + +[profile.release] +opt-level = 2 + +[workspace] -- cgit