[package]
edition = "2021"
rust-version = "1.74"
name = "ferroplan"
version = "0.2.2"
authors = ["Harold Hersey <haroldhhersey@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, data-parallel PDDL planner in Rust — FF heuristic with ADL, numeric, derived axioms, PDDL3 preferences, PDDL2.1 temporal, and a goal decomposer"
homepage = "https://hhh42.github.io/ferroplan"
readme = "README.md"
keywords = [
"pddl",
"planner",
"planning",
"ai",
"heuristic-search",
]
categories = [
"science",
"command-line-utilities",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hhh42/ferroplan"
[lib]
name = "ferroplan"
path = "src/lib.rs"
[[example]]
name = "invariants_coverage"
path = "examples/invariants_coverage.rs"
[[example]]
name = "json_api"
path = "examples/json_api.rs"
[[example]]
name = "parse"
path = "examples/parse.rs"
[[example]]
name = "solve"
path = "examples/solve.rs"
[[test]]
name = "adl"
path = "tests/adl.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "decompose"
path = "tests/decompose.rs"
[[test]]
name = "espc"
path = "tests/espc.rs"
[[test]]
name = "ipc5_pref_metric"
path = "tests/ipc5_pref_metric.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "pddl3"
path = "tests/pddl3.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[[test]]
name = "tdemand"
path = "tests/tdemand.rs"
[[test]]
name = "temporal"
path = "tests/temporal.rs"
[[bench]]
name = "planning"
path = "benches/planning.rs"
harness = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.serde_json]
version = "1"