plenum-bot/Cargo.toml
nobody 124c1b2a55 date logic: parsing, computations, config, states
date:
- parse a date specification
- now has most of the date computations we need

main:
- add explicit state machine (states + config)
- has first steps towards figuring out intended state
- still needs more logic, and some stuff can probably move to date
2024-12-10 21:38:35 +01:00

24 lines
535 B
TOML

[package]
name = "Plenum-Bot"
version = "0.1.0"
edition = "2021"
[dependencies]
pandoc = "0.8"
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"] }
lettre = "0.11.7"
rand = "0.9.0-alpha.1"
rusqlite = "0.31.0"
uuid = { version = "1.10.0", features = ["v4"] }
log = "0.4.22"
clap = "4.5.11"
rpassword = "7.3.1"
serde = {version = "1.0.204", features = ["derive"]}
serde_json = "1.0.122"
colored = "2.1.0"
nom = "7.1.3"