Skip to main content

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 atlassian;
22pub mod claude;
23pub mod cli;
24pub mod data;
25pub mod datadog;
26pub mod git;
27#[cfg(feature = "mcp")]
28pub mod mcp;
29pub mod utils;
30
31#[cfg(test)]
32mod test_support;
33
34pub use crate::cli::Cli;
35
36/// The current version of omni-dev.
37pub const VERSION: &str = env!("CARGO_PKG_VERSION");