plenum-bot/Cargo.toml

35 lines
709 B
TOML
Raw Normal View History

2024-07-18 19:37:34 +02:00
[package]
name = "plenum_bot"
2024-07-18 19:37:34 +02:00
version = "0.1.0"
edition = "2021"
[dependencies]
2024-08-23 22:08:32 +02:00
stdext = "0.3.3"
2024-07-18 19:37:34 +02:00
chrono = "0.4.38"
regex = "1.10.5"
futures = "0.3.30"
headers = "0.4.0"
reqwest = { version = "0.12.5", default-features = false, features = ["blocking", "rustls-tls", "cookies", "json"] }
2024-07-18 19:37:34 +02:00
lettre = "0.11.7"
rand = "0.9.0-alpha.1"
2024-07-21 00:44:36 +02:00
rusqlite = "0.31.0"
uuid = { version = "1.10.0", features = ["v4"] }
log = "0.4.22"
2024-07-29 15:11:21 +02:00
clap = "4.5.11"
rpassword = "7.3.1"
serde = {version = "1.0.204", features = ["derive"]}
serde_json = "1.0.122"
2024-08-06 18:05:26 +02:00
colored = "2.1.0"
nom = "7.1.3"
mediawiki = "0.3.1"
2024-12-20 09:37:52 +01:00
ollama-rs = "0.2.1"
tokio = "1.0.0"
[[bin]]
name = "Plenum-Bot"
path = "src/main.rs"
[lib]
name = "cccron_lib"
path = "src/lib.rs"