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#![warn(clippy::all)]
21#![deny(unsafe_code)]
22
23pub mod claude;
24pub mod cli;
25pub mod core;
26pub mod data;
27pub mod git;
28pub mod utils;
29
30pub use crate::cli::Cli;
31pub use crate::core::*;
32
33/// The current version of omni-dev
34pub const VERSION: &str = env!("CARGO_PKG_VERSION");