- Add agent module with file operations and command execution tools - Implement create_file, delete_file, read_file, and execute_command tools - Add colored terminal output and user confirmation for commands - Update dependencies: dotenv, serde, serde_json, thiserror - Add .env.example with DEEPSEEK_API_KEY template - Add CLAUDE.md project documentation - Refactor main.rs to use agent system with interactive prompt
14 lines
249 B
TOML
14 lines
249 B
TOML
[package]
|
|
name = "course_4"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
colored = "3.0.0"
|
|
dotenv = "0.15.0"
|
|
rig-core = "0.24.0"
|
|
serde = "1.0.228"
|
|
serde_json = "1.0.145"
|
|
thiserror = "2.0.17"
|
|
tokio = { version = "1.48.0", features = ["full"] }
|