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