aboutsummaryrefslogtreecommitdiff
path: root/examples/full-todolist/Cargo.toml
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2026-06-09 06:34:55 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2026-06-09 06:34:55 +0800
commitab796e81ab4e3e9fa1a26f8217635eebec658b5e (patch)
treebbaf957bd9f952e93b767f5d1228d3c99d450a0a /examples/full-todolist/Cargo.toml
parent78f282007980fe9c9ef143a6bc6fb76282957ab6 (diff)
Add full-todolist example project
Diffstat (limited to 'examples/full-todolist/Cargo.toml')
-rw-r--r--examples/full-todolist/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/full-todolist/Cargo.toml b/examples/full-todolist/Cargo.toml
new file mode 100644
index 0000000..e55d5e9
--- /dev/null
+++ b/examples/full-todolist/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "full-todolist"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
+serde = { version = "1.0.228", features = ["derive"] }
+serde_json = "1.0.150"
+
+[dependencies.mingling]
+path = "../../mingling"
+features = [
+ "parser",
+ "extra_macros",
+ "general_renderer",
+]