From 514929c3b8ee0d4f540be5eb4bc8c1a10e62095d Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Tue, 9 Jun 2026 21:08:20 +0800 Subject: Add unit and integration tests for mingling_core --- mingling_core/tests/test-all/Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mingling_core/tests/test-all/Cargo.toml (limited to 'mingling_core/tests/test-all/Cargo.toml') diff --git a/mingling_core/tests/test-all/Cargo.toml b/mingling_core/tests/test-all/Cargo.toml new file mode 100644 index 0000000..9eea2de --- /dev/null +++ b/mingling_core/tests/test-all/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "test-all" +version = "0.1.0" +edition = "2024" +publish = false + +[workspace] + +[dependencies] +mingling = { path = "../../../mingling", features = [ + "general_renderer_full", + "comp", + "builds", + "repl", + "dispatch_tree", + "parser", + "extra_macros", +] } +tokio = { version = "1", features = ["full"] } +serde = { version = "1", features = ["derive"] } -- cgit