Files
rust-llm-agent/Cargo.toml
T
2026-07-23 18:23:20 +03:00

18 lines
503 B
TOML

[package]
name = "rust-llm-agent"
version = "0.1.0"
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"] }