pddl 0.2.0

A PDDL 3.1 parser, strongly typed
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80.0"
name = "pddl"
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 3.1 parser, strongly typed"
documentation = "https://docs.rs/pddl"
readme = "README.md"
keywords = [
    "pddl",
    "planning",
    "parser",
]
categories = [
    "parser-implementations",
    "science",
    "simulation",
]
license = "EUPL-1.2"
repository = "https://github.com/sunsided/pddl-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = [
    "parser",
    "interning",
]
interning = []
parser = [
    "dep:nom",
    "dep:nom_locate",
]
pretty = ["dep:pretty"]

[lib]
name = "pddl"
path = "src/lib.rs"

[[example]]
name = "pretty_print"
path = "examples/pretty_print.rs"
required-features = [
    "pretty",
    "parser",
]

[[test]]
name = "briefcase_world"
path = "tests/briefcase_world.rs"
required-features = ["parser"]

[[test]]
name = "pddl_file"
path = "tests/pddl_file.rs"
required-features = ["parser"]

[[test]]
name = "pretty_print"
path = "tests/pretty_print.rs"
required-features = [
    "pretty",
    "parser",
]

[[test]]
name = "pretty_print_round_trip"
path = "tests/pretty_print_round_trip.rs"
required-features = [
    "pretty",
    "parser",
]

[dependencies.nom]
version = "8.0.0"
optional = true

[dependencies.nom_locate]
version = "5.0.0"
optional = true

[dependencies.pretty]
version = "0.12.1"
optional = true

[dependencies.thiserror]
version = "2.0.18"