//! `elicit_uom` — MCP tools for the `uom` units-of-measurement library.
//!
//! Provides two plugins:
//!
//! | Plugin | Namespace | Description |
//! |---|---|---|
//! | [`UomQuantityPlugin`] | `uom_{name}__*`, `uom_qty__*` | Quantity creation, arithmetic, conversion |
//! | [`UomCodePlugin`] | `uom_code__*` | Code emission and catalog queries |
//!
//! # Quick start
//!
//! ```rust,no_run
//! use elicit_uom::{UomQuantityPlugin, UomCodePlugin};
//!
//! let qty = UomQuantityPlugin::new();
//! let code = UomCodePlugin::with_bus(qty.bus());
//! ```
pub use ;
pub use UomCodePlugin;
pub use ;
pub use ;
pub use ;