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