dockerfile-parser-rs 3.3.0

The ultimate Rust library for parsing, modifying, and generating Dockerfiles
Documentation
# 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 = "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"