1#[cfg(feature = "jemalloc")]
2#[global_allocator]
3static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
4
5#[cfg(feature = "jemalloc")]
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 marked_block;
32pub mod mcp_stdio;
33#[cfg(feature = "http-server")]
34pub mod proxy;
35pub mod proxy_autostart;
36pub mod proxy_setup;
37pub mod report;
38pub mod rewrite_registry;
39pub mod rules_inject;
40pub mod server;
41pub mod setup;
42pub mod shell;
43pub mod shell_hook;
44pub mod status;
45pub mod terminal_ui;
46pub mod token_report;
47pub mod tool_defs;
48pub mod tools;
49pub mod tui;
50pub mod uninstall;