[package]
edition = "2021"
rust-version = "1.75"
name = "flowmaid"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mermaid-like diagram engine in pure std Rust (flowcharts + ER diagrams): hand-written parser, Sugiyama-style layout, SVG renderer, and an interactive scene API for drag-and-drop apps. Zero dependencies."
readme = "README.md"
keywords = [
"mermaid",
"diagram",
"flowchart",
"svg",
"layout",
]
categories = [
"visualization",
"command-line-utilities",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/go-routine-id/flowmaid"
[lib]
name = "flowmaid"
path = "src/lib.rs"
[[bin]]
name = "flowmaid"
path = "src/main.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "drag_sim"
path = "examples/drag_sim.rs"
[dependencies]