Files
honey-biscuit-workshop/workshop-llm-detector/Cargo.toml
T
2025-11-09 17:27:18 +08:00

26 lines
572 B
TOML

[package]
name = "workshop-llm-detector"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "workshop-llm-detector"
path = "src/main.rs"
[lib]
name = "workshop_llm_detector"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.100"
async-trait = "0.1.89"
clap = { version = "4.5.51", features = ["derive"] }
log = "0.4.28"
ollama-rs = "0.3.2"
openai_api_rust = "0.1.9"
reqwest = { version = "0.12.24", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = ["full"] }