[package]
edition = "2024"
name = "graphum"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe wrappers around OGDF planarity routines via ogdf-sys."
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/khoek/nexus"
[lib]
name = "graphum"
path = "src/lib.rs"
[[test]]
name = "addability"
path = "tests/addability.rs"
[[test]]
name = "boyer_myrvold"
path = "tests/boyer_myrvold.rs"
[[test]]
name = "contracts"
path = "tests/contracts.rs"
[[test]]
name = "corner_cases"
path = "tests/corner_cases.rs"
[[test]]
name = "graph_families"
path = "tests/graph_families.rs"
[[test]]
name = "k4_chain"
path = "tests/k4_chain.rs"
[[test]]
name = "kuratowski_subdivisions"
path = "tests/kuratowski_subdivisions.rs"
[[test]]
name = "large_scale"
path = "tests/large_scale.rs"
[[test]]
name = "maximal_planar"
path = "tests/maximal_planar.rs"
[[test]]
name = "more_families"
path = "tests/more_families.rs"
[[test]]
name = "more_randomized"
path = "tests/more_randomized.rs"
[[test]]
name = "randomized"
path = "tests/randomized.rs"
[[test]]
name = "reindexing"
path = "tests/reindexing.rs"
[[test]]
name = "semantics"
path = "tests/semantics.rs"
[[test]]
name = "small_n"
path = "tests/small_n.rs"
[[test]]
name = "split_merge"
path = "tests/split_merge.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "triangulation_local_flips"
path = "tests/triangulation_local_flips.rs"
[dependencies.autocxx]
version = "0.30"
[dependencies.cxx]
version = "1"
[dependencies.ogdf-sys]
version = "0.3.2"
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.rustworkx-core]
version = "0.17"