bebot/Cargo.toml

44 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2023-09-15 07:07:47 +00:00
[package]
name = "bebot"
2023-09-23 05:13:23 +00:00
version = "0.2.0"
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"
2023-09-15 07:07:47 +00:00
edition = "2021"
categories = [
"development-tools",
]
keywords = [
"gitlab",
"matrix",
"bot",
"webhook",
]
exclude = [
".gitea/*",
]
2023-09-15 07:07:47 +00:00
[dependencies]
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
2023-09-15 07:07:47 +00:00
constant_time_eq = "0.3"
dateparser = "0.2"
2023-09-15 07:07:47 +00:00
env_logger = "0.10"
futures = "0.3"
2023-09-15 07:07:47 +00:00
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"] }
2023-09-17 07:56:02 +00:00
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["tokio-rustls", "rustls-tls-native-roots", "gzip"] }
2023-09-15 07:07:47 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2023-09-17 07:56:02 +00:00
serde_regex = "1"
2023-09-15 07:07:47 +00:00
serde_yaml = "0.9"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros", "time"] }
2023-09-15 07:07:47 +00:00
warp = "0.3"