code_mesh_core/
features.rs1pub const HAS_COMPRESSION: bool = cfg!(feature = "compression");
5
6pub const HAS_FILE_WATCHING: bool = cfg!(feature = "file-watching");
8
9pub const HAS_ADVANCED_CRYPTO: bool = cfg!(feature = "crypto");
11
12pub const HAS_TOKIO: bool = cfg!(feature = "native");
14
15pub const HAS_WASM: bool = cfg!(feature = "wasm");
17
18pub const HAS_WEB: bool = cfg!(feature = "web");
20
21pub const HAS_OPENAI: bool = cfg!(feature = "openai");
23
24pub const HAS_ANTHROPIC: bool = cfg!(feature = "anthropic");
26
27pub const HAS_MISTRAL: bool = cfg!(feature = "mistral");