nginx-discovery 0.4.0

Parse, analyze, and extract information from NGINX configurations
Documentation
//! NGINX configuration parser

mod lexer;
mod parse;
mod token;

pub use lexer::Lexer;
pub use parse::Parser;
pub use token::{Token, TokenKind};

use crate::ast::Config;
use crate::error::Result;

/// Parse NGINX configuration from text
///
/// This is the main entry point for parsing.
///
/// # Errors
///
/// Returns an error if:
/// - The input contains syntax errors
/// - Unexpected tokens are encountered
/// - The configuration structure is invalid
///
/// # Examples
///
/// ```
/// use nginx_discovery::parse;
///
/// let config = "user nginx;";
/// let result = parse(config).unwrap();
/// assert_eq!(result.directives.len(), 1);
/// ```
pub fn parse(input: &str) -> Result<Config> {
    let mut parser = Parser::new(input)?;
    parser.parse()
}