10 lines
230 B
Rust
10 lines
230 B
Rust
#[cfg(feature = "jemalloc")]
|
|
use tikv_jemallocator::Jemalloc;
|
|
|
|
#[cfg(feature = "jemalloc")]
|
|
#[global_allocator]
|
|
static GLOBAL: Jemalloc = Jemalloc;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
cosmic_files::main()
|
|
}
|