jdp/Cargo.toml

32 lines
593 B
TOML

[package]
name = "jdp"
version = "0.2.3"
authors = ["R. Tyler Croy <rtyler@brokenco.de>"]
edition = "2018"
description = "A Rust-native parser for Jenkins Declarative Pipeline"
homepage = "https://github.com/rtyler/jdp"
repository = "https://github.com/rtyler/jdp"
license = "LGPL-3.0+"
keywords = ["jenkins", "pipeline"]
[lib]
name = "jdp"
path = "src/lib.rs"
[[bin]]
name = "jdp"
path = "src/main.rs"
[dependencies]
gumdrop = "~0.8.0"
lazy_static = "~1.4.0"
log = "~0.4.11"
pest = "~2.1.3"
pest_derive = "~2.1.0"
pretty_env_logger = "~0.4.0"
regex = "1"
[dev-dependencies]
glob = "0.3"