#![doc = include_str!("../README.en.md")]
#![forbid(unsafe_code)]
mod completion;
mod error;
mod help;
mod parser;
mod raw;
mod shell;
mod spec;
mod spec_validation;
#[cfg(test)]
mod parser_tests;
#[cfg(test)]
mod spec_tests;
pub use completion::{CompletionCandidate, CompletionEngine, CompletionKind, CompletionRequest};
pub use error::{CliError, CliErrorKind};
pub use help::HelpRenderer;
pub use parser::{CliParser, ParsedCli, ParsedOption};
pub use raw::{ArgLimits, RawArgs};
pub use shell::{render_dynamic_completion_script, Shell, ShellScriptError};
pub use spec::{ArgumentSpec, CliSpec, CommandSpec, OptionSpec, SpecError, ValueMode, ValueType};