klieo-memory-sqlite 3.12.1

SQLite-backed implementations of klieo-core's memory traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Re-exports of the shared `Embedder` trait + non-ranking/fake impls.
//!
//! W3.A17: the trait used to be duplicated here. The single home is
//! now [`klieo_embed_common`]; everything below is a re-export so
//! call sites that do `use klieo_memory_sqlite::Embedder` keep
//! working.

pub use klieo_embed_common::{Embedder, NonRankingEmbedder};

/// Legacy name for [`NonRankingEmbedder`]. Deprecated at its definition, so
/// downstream use warns; `#[deprecated]` on a re-export is silently ignored by
/// rustc and would announce a migration it never prompts.
#[allow(deprecated)]
pub use klieo_embed_common::DummyEmbedder;

#[cfg(any(test, feature = "test-utils"))]
pub use klieo_embed_common::FakeEmbedder;