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_autostart;
20pub mod daemon_client;
21pub mod dashboard;
22pub mod doctor;
23pub mod dropin;
24pub mod engine;
25pub mod heatmap;
26pub mod hook_handlers;
27pub mod hooks;
28#[cfg(feature = "http-server")]
29pub mod http_server;
30pub mod instructions;
31pub mod ipc;
32pub mod lsp;
33pub mod marked_block;
34pub mod mcp_stdio;
35#[cfg(feature = "http-server")]
36pub mod proxy;
37pub mod proxy_autostart;
38pub mod proxy_setup;
39pub mod report;
40pub mod rewrite_registry;
41pub mod rules_inject;
42pub mod server;
43pub mod setup;
44pub mod shell;
45pub mod shell_hook;
46pub mod status;
47pub mod terminal_ui;
48pub mod token_report;
49pub mod tool_defs;
50pub mod tools;
51pub mod tui;
52pub mod uninstall;