galvyn-core 0.5.1

Core concepts for galvyn like trait definitions
1
2
3
4
5
6
7
8
9
10
11
12
//! Miscellaneous collection of utilities
//!
//! They are not necessarily related to writing webservers
//! but can generally be useful to any project.
#![warn(missing_docs)]

pub mod either;
pub mod redacted;
pub mod serde_env;
pub mod serde_parse;
pub mod sync;
pub mod tracing_helper;