omni_dev/lib.rs
1//! # omni-dev
2//!
3//! A comprehensive development toolkit written in Rust.
4//!
5//! ## Features
6//!
7//! - Fast and efficient development tools
8//! - Extensible architecture
9//! - Memory safe and reliable
10//!
11//! ## Quick Start
12//!
13//! ```rust
14//! use omni_dev::*;
15//!
16//! println!("Hello from omni-dev!");
17//! ```
18
19#![warn(missing_docs)]
20
21pub mod claude;
22pub mod cli;
23pub mod data;
24pub mod git;
25pub mod utils;
26
27pub use crate::cli::Cli;
28
29/// The current version of omni-dev.
30pub const VERSION: &str = env!("CARGO_PKG_VERSION");