-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (26 loc) · 938 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "pddl"
version = "0.1.0"
description = "A PDDL 3.1 parser, strongly typed"
license = "EUPL-1.2"
documentation = "https://docs.rs/pddl"
categories = ["parser-implementations", "science", "simulation"]
keywords = ["pddl", "planning", "parser"]
repository = "https://github.com/sunsided/pddl-rs"
readme = "README.md"
authors = ["Markus Mayer <widemeadows@gmail.com>"]
edition = "2021"
rust-version = "1.68.0"
[features]
default = ["parser", "interning"]
parser = ["dep:nom", "dep:nom-greedyerror", "dep:nom_locate", "dep:thiserror"]
interning = ["dep:lazy_static"]
[dependencies]
lazy_static = { version = "1.4.0", optional = true }
nom = { version = "7.1.3", optional = true }
nom-greedyerror = { version = "0.5.0", optional = true }
nom_locate = { version = "4.2.0", optional = true }
thiserror = { version = "1.0.61", optional = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]