bebot/Cargo.toml
Brian J. Tarricone 2cc3b87a35
All checks were successful
CI / CI (push) Successful in 7m49s
Release / Publish to crates.io (push) Successful in 1m48s
Release / Publish to Docker Hub (push) Successful in 9m19s
Updates for release
2023-09-24 12:08:50 -07:00

44 lines
1.2 KiB
TOML

[package]
name = "bebot"
version = "0.2.1"
description = "Gitlab webhook bot that publishes events to Matrix"
license = "GPL-3.0"
authors = [
"Brian J. Tarricone <brian@tarricone.org>",
]
homepage = "https://git.spurint.org/kelnos/bebot"
repository = "https://git.spurint.org/kelnos/bebot"
edition = "2021"
categories = [
"development-tools",
]
keywords = [
"gitlab",
"matrix",
"bot",
"webhook",
]
exclude = [
".gitea/*",
]
[dependencies]
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
constant_time_eq = "0.3"
dateparser = "0.2"
env_logger = "0.10"
futures = "0.3"
http = "0.2"
log = { version = "0.4", features = ["std"] }
matrix-sdk = { version = "0.6", features = ["anyhow", "markdown", "rustls-tls"], default-features = false }
quick-xml = { version = "0.30", features = ["serialize"] }
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["tokio-rustls", "rustls-tls-native-roots", "gzip"] }
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"] }
warp = "0.3"