From 277bc93f84b298c7cb24e136f67eb237fb3a68a2 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 22 Apr 2026 20:24:18 +0800 Subject: Move prototype files to _prototype directory --- _prototype/Cargo.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _prototype/Cargo.toml (limited to '_prototype/Cargo.toml') diff --git a/_prototype/Cargo.toml b/_prototype/Cargo.toml new file mode 100644 index 0000000..64a5913 --- /dev/null +++ b/_prototype/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "markdialog" +edition = "2024" +version = "0.1.0" +authors = ["Weicao-CatilGrass"] +description = "Write your story with Markdown!" +repository = "https://github.com/CatilGrass/MarkDialog" +license-file = "LICENSE-MIT" +readme = "README.md" +keywords = ["dialog", "markdown"] +categories = ["game-development"] +publish = true + +[workspace] +package.version = "0.1.0" +members = [ + "player", # Dialog Player + "converter" # Markdown Converter +] + +[lib] +proc-macro = true + +[dependencies] +syn = { version = "2.0", features = ["full", "visit-mut"] } +quote = "1.0" +proc-macro2 = "1.0" +sha2 = "0.10" -- cgit