murmeldin
f12f6d05b1
- mediawiki: login_token_get and login_post now working - csrf still in progress - added wiki-api-user + secret to wiki-init - changed ascii-art to be more compact
33 lines
668 B
TOML
33 lines
668 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"
|
|
|
|
[[bin]]
|
|
name = "Plenum-Bot"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "cccron_lib"
|
|
path = "src/lib.rs"
|