summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-09 10:31:14 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-09 10:31:14 +0800
commit12d08d599a41b15e0a20113d1a521c8c3a232e79 (patch)
tree2052020ecaa9a07043e1a76410ad5649226d728d /Cargo.toml
Initialize MarkDialog project with parser and workspace structure
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..ee8b721
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "markdialog"
+version = "0.1.0"
+edition = "2024"
+
+[workspace]
+members = [
+ "built_res", # Built Resources
+ "player", # Dialog Player
+ "parser" # Markdown Parser
+]
+
+[dependencies]
+built_res = { path = "built_res" }
+markdialog_player = { path = "player" }
+markdialog_parser = { path = "parser" }