lite-strtab 0.2.0

Crate for storing a lot of strings in a single buffer to save memory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(not(target_os = "linux"))]
fn main() {
    eprintln!("memory_report only supports Linux (uses malloc_usable_size)");
    std::process::exit(1);
}

#[cfg(target_os = "linux")]
#[path = "memory_report/linux.rs"]
mod linux;

#[cfg(target_os = "linux")]
fn main() {
    linux::run();
}