[package]
edition = "2018"
name = "graphplan"
version = "0.1.3"
authors = ["Alex Kehayias <alex.kehayias@gmail.com>"]
description = "Implementation of the Graphplan planning algorithm from Avrim L. Blum and Merrick L. Furst in Rust"
readme = "README.md"
keywords = ["graphplan", "planning", "plangraph"]
categories = ["algorithms", "data-structures"]
license = "EPL-1.0"
repository = "https://github.com/alexkehayias/rust-graphplan"
[[bench]]
name = "plangraph"
harness = false
[[bench]]
name = "solver"
harness = false
[dependencies.itertools]
version = "0.8"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
[dependencies.serde_derive]
version = "1.0"
[dependencies.toml]
version = "0.4.2"
[dev-dependencies.criterion]
version = "0.2"