Local embedding generation using Candle (pure Rust ML framework).
This crate provides the **Fast Path** per CP-010:
- --
```rust
use cp_embeddings::EmbeddingEngine;
let engine = EmbeddingEngine::new()?;
let embedding = engine.embed("Hello, world!")?;
```