[package]
edition = "2024"
name = "dockerfile-parser-rs"
version = "3.3.0"
authors = ["Michal Ĺ oltis <msoltis1@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The ultimate Rust library for parsing, modifying, and generating Dockerfiles"
documentation = "https://docs.rs/dockerfile-parser-rs/latest/dockerfile_parser_rs"
readme = "README.md"
keywords = [
"containers",
"docker",
"dockerfile",
"library",
"parser",
]
categories = [
"filesystem",
"parsing",
"virtualization",
]
license = "MIT"
repository = "https://github.com/slimreaper35/dockerfile-parser-rs"
[lib]
name = "dockerfile_parser_rs"
path = "src/lib.rs"
[[bin]]
name = "dockerfile-parser-rs"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.clap]
version = "4.5.47"
features = ["derive"]
[dependencies.regex]
version = "1.11.1"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.142"
[lints.clippy]
cargo = "warn"
complexity = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"