2024-11-15 11:10:30 -07:00
|
|
|
#[cfg(feature = "jemalloc")]
|
|
|
|
|
use tikv_jemallocator::Jemalloc;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "jemalloc")]
|
|
|
|
|
#[global_allocator]
|
|
|
|
|
static GLOBAL: Jemalloc = Jemalloc;
|
|
|
|
|
|
2024-01-03 15:27:32 -07:00
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
2026-03-14 22:20:51 +01:00
|
|
|
let _ = jxl_oxide::integration::register_image_decoding_hook();
|
2024-02-01 15:14:14 -07:00
|
|
|
cosmic_files::main()
|
2024-02-01 16:29:10 +00:00
|
|
|
}
|