semantic_memory_mcp/
lib.rs1pub mod bridge;
8#[cfg(not(all(feature = "stable", not(feature = "full"))))]
9pub mod http_server;
10#[cfg(all(feature = "stable", not(feature = "full")))]
11#[path = "http_server_stable.rs"]
12pub mod http_server;
13pub mod profile;
14#[cfg(not(all(feature = "stable", not(feature = "full"))))]
15pub mod server;
16#[cfg(all(feature = "stable", not(feature = "full")))]
17#[path = "server_stable.rs"]
18pub mod server;
19#[cfg(not(all(feature = "stable", not(feature = "full"))))]
20mod tools;
21#[cfg(all(feature = "stable", not(feature = "full")))]
22#[path = "tools_stable.rs"]
23mod tools;