dockerfile-parser-rs 3.3.0

The ultimate Rust library for parsing, modifying, and generating Dockerfiles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod ast;
mod error;
mod file;
mod parser;
mod quoter;
mod symbols;
mod utils;

// public API

pub type ParseResult<T> = Result<T, ParseError>;

pub use crate::ast::Instruction;
pub use crate::error::ParseError;
pub use crate::file::Dockerfile;