aboutsummaryrefslogtreecommitdiff
path: root/examples/full-todolist/Cargo.toml
blob: 9d6f1a7c6002f7f60c50a84e32a391835bf019af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[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",
    "extras",
    "structural_renderer",
]

[workspace]