ailoop_context/lib.rs
1//! **This crate has been renamed to [`ailoop-history`](https://crates.io/crates/ailoop-history).**
2//!
3//! All items are re-exported here with a `#[deprecated]` notice so
4//! existing code keeps compiling while you migrate. The previous
5//! `ContextManager` / `ContextManagerBuilder` types were renamed to
6//! `History` / `HistoryBuilder` at the same time — see the
7//! [ailoop-history crate](https://crates.io/crates/ailoop-history) for
8//! details and migration guidance.
9
10#![allow(deprecated)]
11
12#[deprecated(
13 since = "1.0.0-rc.3",
14 note = "ailoop-context was renamed to ailoop-history; depend on `ailoop-history` directly"
15)]
16pub use ailoop_history::*;