[package]
edition = "2024"
name = "oak-visualize"
version = "0.0.1"
authors = ["Yggdrasill Team <192607617@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance visualization and layout algorithms for the oak ecosystem with flexible configuration, emphasizing tree and graph visualization."
homepage = "https://github.com/ygg-lang/oaks"
documentation = "https://docs.rs/oak-visualize"
readme = "readme.md"
keywords = [
"visualization",
"layout",
"ast",
"tree",
"graph",
]
categories = [
"visualization",
"algorithms",
]
license = "MPL-2.0"
repository = "https://github.com/ygg-lang/oaks"
resolver = "2"
[features]
default = []
[lib]
name = "oak_visualize"
path = "src/lib.rs"
[[test]]
name = "geometry_tests"
path = "tests/geometry_tests.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "layout_tests"
path = "tests/layout_tests.rs"
[[test]]
name = "render_tests"
path = "tests/render_tests.rs"
[[test]]
name = "theme_tests"
path = "tests/theme_tests.rs"
[[test]]
name = "tree_tests"
path = "tests/tree_tests.rs"
[dependencies.oak-core]
version = "0.0.1"
[dependencies.oak-highlight]
version = "0.0.1"
optional = true
[dependencies.oak-pretty-print]
version = "0.0.1"
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"