celq/documentation.rs
1//! # celq Manual
2#![doc = include_str!("../docs/manual.md")]
3
4//! # Other Guides
5//! [Installation Guide](`crate::installation_guide`)
6//!
7//! [Comparison with other tools](`crate::comparison_with_other_tools`)
8pub mod installation_guide {
9 //! # celq Installation Guide
10 #![doc = include_str!("../docs/installation_guide.md")]
11}
12
13pub mod comparison_with_other_tools {
14 //! # Comparison with other tools
15 #![doc = include_str!("../docs/comparison_with_other_tools.md")]
16}