aboutsummaryrefslogtreecommitdiff
path: root/examples/full-todolist/Cargo.toml
diff options
context:
space:
mode:
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",
+]