summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 64a5913bb1692c77ca365d0dac5f5b5f17bf9525 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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"