figurehead 0.4.2

A Rust library to convert Mermaid.js diagram markup into ASCII diagrams
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.chumsky]
version = "0.11.2"

[dependencies.thiserror]
version = "1.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter", "fmt", "ansi", "json"]
version = "0.3"

[dependencies.unicode-width]
version = "0.1"

[dev-dependencies.proptest]
version = "1.9.0"

[dev-dependencies.wasm-bindgen-test]
version = "0.3"

[[example]]
name = "debug_lr"
path = "examples/debug_lr.rs"

[[example]]
name = "test_labels"
path = "examples/test_labels.rs"

[[example]]
name = "test_lr"
path = "examples/test_lr.rs"

[features]
class = []
default = ["flowchart"]
flowchart = []
sequence = []

[lib]
crate-type = ["cdylib", "rlib"]
name = "figurehead"
path = "src/lib.rs"

[package]
authors = ["Matthew Krohn <matthew.d.krohn@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["graphics", "visualization", "parsing", "text-processing"]
description = "A Rust library to convert Mermaid.js diagram markup into ASCII diagrams"
edition = "2021"
homepage = "https://github.com/Mootikins/figurehead-rs"
keywords = ["mermaid", "ascii", "diagram", "flowchart", "renderer"]
license = "MIT"
name = "figurehead"
readme = "README.md"
repository = "https://github.com/Mootikins/figurehead-rs"
version = "0.4.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.serde_json]
version = "1.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.tracing-wasm]
version = "0.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"

[[test]]
name = "api"
path = "tests/api.rs"

[[test]]
name = "chumsky_parser_coverage"
path = "tests/chumsky_parser_coverage.rs"

[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"

[[test]]
name = "error_tests"
path = "tests/error_tests.rs"

[[test]]
name = "flowchart_database_coverage"
path = "tests/flowchart_database_coverage.rs"

[[test]]
name = "flowchart_detector_coverage"
path = "tests/flowchart_detector_coverage.rs"

[[test]]
name = "flowchart_renderer_coverage"
path = "tests/flowchart_renderer_coverage.rs"

[[test]]
name = "gitgraph_coverage"
path = "tests/gitgraph_coverage.rs"

[[test]]
name = "gitgraph_renderer_coverage"
path = "tests/gitgraph_renderer_coverage.rs"

[[test]]
name = "layout_spacing"
path = "tests/layout_spacing.rs"

[[test]]
name = "lib_api"
path = "tests/lib_api.rs"

[[test]]
name = "logging"
path = "tests/logging.rs"

[[test]]
name = "logging_coverage"
path = "tests/logging_coverage.rs"

[[test]]
name = "logging_filtering"
path = "tests/logging_filtering.rs"

[[test]]
name = "logging_integration"
path = "tests/logging_integration.rs"

[[test]]
name = "snapshots"
path = "tests/snapshots.rs"

[[test]]
name = "types_display"
path = "tests/types_display.rs"