veridian_kernel/devtools/mod.rs
1//! Developer Tools
2//!
3//! Native development tools for VeridianOS including a Git client,
4//! IDE with LSP support, CI runner, and profiling GUI.
5
6#[cfg(feature = "alloc")]
7pub mod git;
8
9#[cfg(feature = "alloc")]
10pub mod ide;
11
12#[cfg(feature = "alloc")]
13pub mod ci;
14
15#[cfg(feature = "alloc")]
16pub mod profiler;