manta-shared 2.0.0-beta.34

Shared types and pure helpers used by both manta-cli and manta-server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Behavioural helpers used by both binaries: config loader, error
//! type, log-init helper. `log_ops` is bi-binary; both `manta-cli` and
//! `manta-server` `configure(...)` the tracing subscriber on startup.

/// Date-time format string used for displaying timestamps
/// throughout the application (e.g. "04/03/2026 14:30:00").
pub const DATETIME_FORMAT: &str = "%d/%m/%Y %H:%M:%S";

pub mod config;
pub mod error;
pub mod log_ops;