plenum-bot/Cargo.toml
murmeldin e4444b8118 mediawiki progress
- mediawiki.rs:
 - new make_request function for easier post- and get-requests
 - new new_wiki_page function that creates new wiki pages
 - working csrf-Token-function
 - fixed read_txt_file function: Now properly working
 - pad_ins_wiki-function is now the main trigger for all the actions that should be done on day after plenum
- hedgedoc.rs + mediawiki.rs: Better error handling for common offline edge case
- main: ansi art moved in function, Timer and eta for time prediction during development
- still to do in mediawiki.rs: Date logic for pad generation and function for modifying the main Plenum Page
2024-12-10 21:38:35 +01:00

34 lines
688 B
TOML

[package]
name = "plenum_bot"
version = "0.1.0"
edition = "2021"
[dependencies]
stdext = "0.3.3"
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", "cookies", "json"] }
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"
mediawiki = "0.3.1"
[[bin]]
name = "Plenum-Bot"
path = "src/main.rs"
[lib]
name = "cccron_lib"
path = "src/lib.rs"