inklog 0.3.0-rc.2

Enterprise-grade Rust logging infrastructure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2026 Kirky.X
// SPDX-License-Identifier: MIT
//! trait-kit 0.4 `AsyncKit` integration for inklog.
//!
//! Provides:
//! - [`InklogModule`]: DI module wrapping inklog's `Database` abstraction
//! - [`InklogBuildObserver`]: build pipeline observability via `BuildObserver`
//! - [`create_inklog_scope`]: per-request scoped dependency isolation

pub mod module;
pub mod observer;
pub mod scope;

pub use module::InklogModule;
pub use observer::InklogBuildObserver;
pub use scope::{create_inklog_scope, populate_inklog_scope};