mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
3b05417246
In particular this fixes `cargo build --all-features`.
8 lines
245 B
Rust
8 lines
245 B
Rust
//! Default allocator with no special features
|
|
|
|
/// Always returns the empty string
|
|
pub(crate) fn memory_stats() -> String { Default::default() }
|
|
|
|
/// Always returns the empty string
|
|
pub(crate) fn memory_usage() -> String { Default::default() }
|