dbnexus 0.3.2

An enterprise-grade database abstraction layer for Rust with built-in permission control and connection pooling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2026 Kirky.X
//
// Licensed under the MIT License
// See LICENSE file in the project root for full license information.

//! Integration adapters for external crates.
//!
//! Each submodule adapts a third-party library's API to a dbnexus domain
//! trait. Adapters live in dbnexus (the consumer crate), not in the
//! provider crate — this avoids circular dependencies (see `design.md`
//! Decision 2).

#[cfg(feature = "oxcache-integration")]
pub mod oxcache_adapter;

#[cfg(feature = "kit")]
pub mod kit;