Expand description
§alumy
A batteries-included Rust SDK for rapid application development. Logging, system utilities, and filesystem helpers — all ready to use.
§Modules
log: High-performance, non-blocking logging utilities with fluent configuration.sys: System-level utilities like uptime.fs: Filesystem utilities including size parsing and path building.version: Crate metadata and version information.
§Re-exports
This crate re-exports logging macros from tracing for convenience:
trace!, debug!, info!, warn!, error!, and the Level enum.
Modules§
- fs
- Filesystem utilities for path building and file size handling.
- log
- sys
- System-level utilities for cross-platform development.
- version
Macros§
- build_
path - Macro to build a path in the format:
dir/name/name.suffix - crate_
name - Macro to get the name of the crate at compile time.
- crate_
version - Macro to get the current version of the crate at compile time.
- debug
- Constructs an event at the debug level.
- error
- Constructs an event at the error level.
- info
- Constructs an event at the info level.
- trace
- Constructs an event at the trace level.
- warn
- Constructs an event at the warn level.