mirror of
https://github.com/YGGverse/rssto.git
synced 2026-03-31 17:15:29 +00:00
22 lines
795 B
TOML
22 lines
795 B
TOML
[package]
|
|
name = "rssto-llm"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
description = "LLM daemon for the rssto DB translations"
|
|
keywords = ["rss", "llm", "translation", "localization", "server"]
|
|
categories = ["command-line-utilities", "parsing", "text-processing", "value-formatting"]
|
|
repository = "https://github.com/YGGverse/rssto"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
chrono = "0.4.42"
|
|
clap = { version = "4.5.54", features = ["derive"] }
|
|
lancor = "0.1.1"
|
|
log = "0.4.29"
|
|
mysql = { package = "rssto-mysql", version = "0.1.0", features = ["transaction"], path = "../mysql" }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
toml = "0.9.10"
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|