[package]
edition = "2024"
name = "miniplan"
version = "0.2.0"
authors = ["Markus Mayer <widemeadows@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A PDDL planner library built around the pddl crate, with grounding and search utilities"
readme = "README.md"
keywords = [
"pddl",
"planning",
"ai",
"scheduling",
]
categories = ["science"]
license = "EUPL-1.2"
repository = "https://github.com/sunsided/miniplan"
resolver = "2"
[lib]
name = "miniplan"
path = "src/lib.rs"
[[example]]
name = "briefcase"
path = "examples/briefcase.rs"
[[example]]
name = "solve_file"
path = "examples/solve_file.rs"
[[test]]
name = "aind_air_cargo"
path = "tests/aind_air_cargo.rs"
[[test]]
name = "briefcase_world"
path = "tests/briefcase_world.rs"
[[test]]
name = "hanoi_derived"
path = "tests/hanoi_derived.rs"
[dependencies.bitflags]
version = "2"
[dependencies.fixedbitset]
version = "0.5"
[dependencies.indexmap]
version = "2"
[dependencies.pddl]
version = "0.2.0"
[dependencies.rustc-hash]
version = "2"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"