Template code

This commit is contained in:
2026-07-23 18:23:20 +03:00
parent de28edb4c3
commit b54676ed8e
3 changed files with 1760 additions and 3 deletions
+13 -1
View File
@@ -1,6 +1,18 @@
[package]
name = "rust-llm-agent"
version = "0.1.0"
edition = "2024"
edition = "2021"
[dependencies]
# Асинхронный runtime
tokio = { version = "1.38", features = ["full"] }
# HTTP-клиент
reqwest = { version = "0.12", features = ["json"] }
# Сериализация / Десериализация JSON
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Парсинг аргументов CLI (флаги --session-id и т.д.)
clap = { version = "4.5", features = ["derive"] }