Files
bebot/Cargo.toml
Brian J. Tarricone df394a18e8
All checks were successful
CI / CI (push) Successful in 9m59s
Release / Publish to crates.io (push) Successful in 2m34s
Release / Publish to Docker Hub (push) Successful in 12m34s
Bump version to 0.2.5
2025-08-10 00:11:00 -07:00

48 lines
1.3 KiB
TOML

[package]
name = "bebot"
version = "0.2.5"
description = "Gitlab webhook bot that publishes events to Matrix"
license = "AGPL-3.0"
authors = [
"Brian J. Tarricone <brian@tarricone.org>",
]
homepage = "https://git.spurint.org/brian/bebot"
repository = "https://git.spurint.org/brian/bebot"
edition = "2021"
categories = [
"development-tools",
]
keywords = [
"gitlab",
"matrix",
"bot",
"webhook",
]
exclude = [
".gitea/*",
]
[dependencies]
anyhow = "1"
axum = "0.8.4"
axum-extra = { version = "0.10.1", features = ["typed-header"] }
chrono = { version = "0.4", features = ["serde"] }
constant_time_eq = "0.4"
dateparser = "0.2"
env_logger = "0.11"
futures = "0.3"
http = "1.3"
log = { version = "0.4", features = ["std"] }
matrix-sdk = { version = "0.13", features = ["anyhow", "markdown", "rustls-tls"], default-features = false }
mime = "0.3"
mime-sniffer = "0.1"
mime_guess2 = "2"
quick-xml = { version = "0.38", features = ["serialize"] }
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "gzip", "rustls-tls-native-roots", "system-proxy"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_regex = "1"
serde_yaml = "0.9"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros", "time"] }