[package]
edition = "2024"
name = "oxdock-parser"
version = "0.7.0-alpha"
authors = ["Jeremy Harris <jeremy.harris@zenosmosis.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser and AST definitions for the OxDock DSL."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/jzombie/rust-oxdock"
resolver = "2"
[features]
default = []
proc-macro-api = [
"proc-macro2",
"syn",
"quote",
]
[lib]
name = "oxdock_parser"
path = "src/lib.rs"
[[test]]
name = "env_display"
path = "tests/env_display.rs"
[[test]]
name = "inherit_env"
path = "tests/inherit_env.rs"
[[test]]
name = "invalid_env_inversion"
path = "tests/invalid_env_inversion.rs"
[[test]]
name = "macro_input_parens"
path = "tests/macro_input_parens.rs"
[[test]]
name = "platform_display"
path = "tests/platform_display.rs"
[[test]]
name = "with_io_block"
path = "tests/with_io_block.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.line-ending]
version = "1.5.1"
[dependencies.pest]
version = "2.9.0"
features = ["std"]
default-features = false
[dependencies.pest_derive]
version = "2.9.0"
[dependencies.proc-macro2]
version = "1.0.107"
features = ["span-locations"]
optional = true
[dependencies.quote]
version = "1.0.47"
optional = true
[dependencies.syn]
version = "2.0.119"
features = [
"full",
"visit",
]
optional = true
[dev-dependencies.indoc]
version = "2.0.7"