[package]
edition = "2024"
rust-version = "1.88"
name = "goatd"
version = "0.1.1"
build = "build.rs"
links = "treedecomp"
include = [
"src/**/*.rs",
"tests/**/*.rs",
"examples/**/*.rs",
"build.rs",
"Cargo.toml",
"README.md",
"CLAUDE.md",
"AGENTS.md",
"docs/**/*.md",
"docs/logo.png",
"LICENSE",
"vendor/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Greatest Of All Tree Decompositions: tree decompositions of graphs — elimination orders, FlowCutter, multilevel bisection — with PACE .gr/.td I/O and a command-line solver."
documentation = "https://docs.rs/goatd"
readme = "README.md"
keywords = [
"treewidth",
"tree-decomposition",
"graph",
"pace",
"elimination-order",
]
categories = [
"algorithms",
"science",
"mathematics",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/Tractables/goatd"
[lib]
name = "goatd"
path = "src/lib.rs"
[[bin]]
name = "goatd"
path = "src/bin/goatd.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "flowcutter"
path = "tests/flowcutter.rs"
[[test]]
name = "meter"
path = "tests/meter.rs"
[[test]]
name = "pace"
path = "tests/pace.rs"
[[test]]
name = "partition"
path = "tests/partition.rs"
[[test]]
name = "portfolio"
path = "tests/portfolio.rs"
[[test]]
name = "separator"
path = "tests/separator.rs"
[dependencies.rand]
version = "0.10"
[dependencies.rustc-hash]
version = "2"
[build-dependencies.cc]
version = "1"