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;
13#[cfg(not(all(feature = "stable", not(feature = "full"))))]
14pub mod server;
15#[cfg(all(feature = "stable", not(feature = "full")))]
16#[path = "server_stable.rs"]
17pub mod server;
18#[cfg(not(all(feature = "stable", not(feature = "full"))))]
19mod tools;
20#[cfg(all(feature = "stable", not(feature = "full")))]
21#[path = "tools_stable.rs"]
22mod tools;