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 cli;
24pub mod core;
25pub mod data;
26pub mod git;
27pub mod utils;
28
29pub use crate::cli::Cli;
30pub use crate::core::*;
31
32/// The current version of omni-dev
33pub const VERSION: &str = env!("CARGO_PKG_VERSION");