forgejo-guardian/Cargo.toml
Awiteb af11f8aa14
All checks were successful
Write changelog / write-changelog (push) Successful in 7s
CD / build-assets (aarch64-unknown-linux-gnu) (push) Successful in 7m2s
Rust CI / Rust CI (push) Successful in 7m31s
CD / build-assets (aarch64-unknown-linux-musl) (push) Successful in 7m20s
CD / build-assets (x86_64-unknown-linux-gnu) (push) Successful in 4m21s
CD / build-assets (x86_64-unknown-linux-musl) (push) Successful in 4m32s
CD / release (push) Successful in 22s
chore: Bump the version to v0.2.0
Signed-off-by: Awiteb <a@4rs.nl>
2024-12-09 22:51:25 +00:00

38 lines
1.1 KiB
TOML

[package]
name = "forgejo-guardian"
description = "Simple Forgejo instance guardian, banning users and alerting admins based on certain regular expressions"
version = "0.2.0"
edition = "2021"
authors = ["Awiteb <a@4rs.nl>"]
repository = "https://git.4rs.nl/awiteb/forgejo-guardian"
license = "AGPL-3.0-or-later"
[dependencies]
regex = "1.11.1"
rust-i18n = "3.1.2"
serde_json = "1.0.132"
thiserror = "2.0.2"
toml = "0.8.19"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
serde = { version = "1.0.214", features = ["derive"] }
reqwest = { version = "0.12.9", default-features = false, features = [
"charset",
"http2",
"rustls-tls",
] }
teloxide = { version = "0.13.0", default-features = false, features = [
"macros",
"ctrlc_handler",
"rustls",
] }
tokio = { version = "1.41.1", default-features = false, features = [
"rt-multi-thread",
"macros",
"sync",
"signal",
] }
tokio-util = { version = "0.7.12", default-features = false }
url = { version = "2.5.3", default-features = false, features = ["serde"] }