# 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.68.0" name = "pddl" version = "0.1.0" authors = ["Markus Mayer <widemeadows@gmail.com>"] 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", ] [dependencies.lazy_static] version = "1.4.0" optional = true [dependencies.nom] version = "7.1.3" optional = true [dependencies.nom-greedyerror] version = "0.5.0" optional = true [dependencies.nom_locate] version = "4.2.0" optional = true [dependencies.thiserror] version = "1.0.61" optional = true [features] default = [ "parser", "interning", ] interning = ["dep:lazy_static"] parser = [ "dep:nom", "dep:nom-greedyerror", "dep:nom_locate", "dep:thiserror", ]