Files
rust-llm-agent/Cargo.toml
T
2026-07-24 20:01:28 +03:00

21 lines
626 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"] }
# Асинхронная работа с SQLite
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite"] }