botserver/src/basic/keywords/mod.rs
Rodrigo Rodriguez (Pragmatismo) 2d6f214193 feat: remove unused dependencies and clean up Cargo.lock
Removed several unused dependencies from Cargo.lock including:
- auto_generate_cdp
- headless_chrome
- scraper
- cssparser and related crates
- dtoa and dtoa-short
- string_cache and related crates
- tendril
- tungstenite 0.27.0

Also updated ureq dependency to single version (removed duplicate entry). This cleanup reduces the dependency tree and removes unused code.
2025-11-05 13:46:03 -03:00

26 lines
463 B
Rust

pub mod add_tool;
pub mod add_website;
pub mod bot_memory;
pub mod clear_tools;
pub mod create_site;
pub mod find;
pub mod first;
pub mod for_next;
pub mod format;
pub mod get;
pub mod hear_talk;
pub mod last;
pub mod list_tools;
pub mod llm_keyword;
pub mod on;
pub mod print;
pub mod set;
pub mod set_schedule;
pub mod set_kb;
pub mod wait;
pub mod add_suggestion;
pub mod set_user;
pub mod set_context;
#[cfg(feature = "email")]
pub mod create_draft_keyword;