1#[cfg(all(feature = "jemalloc", not(windows)))]
2#[global_allocator]
3static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
4
5#[cfg(all(feature = "jemalloc", not(windows)))]
6#[allow(non_upper_case_globals)]
7#[export_name = "malloc_conf"]
8pub static malloc_conf: &[u8] = b"background_thread:true,dirty_decay_ms:1000,muzzy_decay_ms:1000\0";
9
10pub mod cli;
11pub mod cloud_client;
12#[cfg(feature = "cloud-server")]
13pub mod cloud_server;
14pub mod cloud_sync;
15pub mod compound_lexer;
16pub mod config_io;
17pub mod core;
18pub mod daemon;
19pub mod daemon_client;
20pub mod dashboard;
21pub mod doctor;
22pub mod dropin;
23pub mod engine;
24pub mod heatmap;
25pub mod hook_handlers;
26pub mod hooks;
27#[cfg(feature = "http-server")]
28pub mod http_server;
29pub mod instructions;
30pub mod ipc;
31pub mod lsp;
32pub mod marked_block;
33pub mod mcp_stdio;
34#[cfg(feature = "http-server")]
35pub mod proxy;
36pub mod proxy_autostart;
37pub mod proxy_setup;
38pub mod report;
39pub mod rewrite_registry;
40pub mod rules_inject;
41pub mod server;
42pub mod setup;
43pub mod shell;
44pub mod shell_hook;
45pub mod status;
46pub mod terminal_ui;
47pub mod token_report;
48pub mod tool_defs;
49pub mod tools;
50pub mod tui;
51pub mod uninstall;