2023-05-20 15:13:46 +02:00
|
|
|
[package]
|
2023-05-27 17:37:40 +02:00
|
|
|
name = "cusku"
|
2023-08-21 13:21:51 +02:00
|
|
|
version = "0.2.0"
|
2023-05-20 15:13:46 +02:00
|
|
|
description = "Webhook to XMPP"
|
2025-07-19 23:03:51 +02:00
|
|
|
edition = "2024"
|
2023-05-20 15:13:46 +02:00
|
|
|
authors = ["Maxime “pep” Buquet <pep@bouah.net>"]
|
|
|
|
|
license = "AGPL-3.0+"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-02 21:52:54 +02:00
|
|
|
clap = { version = "4.5", features = [ "cargo" ] }
|
2024-04-19 20:49:31 +02:00
|
|
|
forgejo-hooks = "*"
|
2024-12-17 21:07:08 +01:00
|
|
|
gitlab = "0.1706"
|
2025-05-04 22:38:59 +02:00
|
|
|
hyper = { version = "1.6", default-features = false, features = [ "http1", "server" ] }
|
2024-07-04 00:35:40 +02:00
|
|
|
hyper-util = { version = "0.1", features = [ "tokio" ] }
|
|
|
|
|
http-body-util = "0.1"
|
2025-05-04 22:38:59 +02:00
|
|
|
bytes = "1"
|
2023-05-20 15:13:46 +02:00
|
|
|
log = "0.4"
|
2024-08-07 11:48:55 +02:00
|
|
|
tokio = { version = "1", default-features = false, features = [ "rt", "net", "sync", "fs" ] }
|
2023-05-20 15:13:46 +02:00
|
|
|
pretty_env_logger = "0.5"
|
2023-05-27 17:20:58 +02:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2023-05-20 15:13:46 +02:00
|
|
|
serde_json = "1.0"
|
2025-08-04 23:51:26 +02:00
|
|
|
toml = "0.9"
|
2025-12-28 19:08:19 +01:00
|
|
|
xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", branch = "xmpp-join-resync", default-features = false, features = [ "serde", "starttls", "rustls-native-certs", "aws_lc_rs" ] }
|
2024-07-10 13:19:04 +02:00
|
|
|
hmac = "0.12"
|
|
|
|
|
sha2 = "0.10"
|
|
|
|
|
hex = "0.4"
|
2025-11-13 18:29:10 +01:00
|
|
|
camino = { version = "1.2", features = ["serde1"] }
|
2024-04-19 20:49:31 +02:00
|
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
|
forgejo-hooks = { path = "forgejo-hooks" }
|
2024-08-30 18:45:54 +02:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
syntax-highlighting = ["xmpp/syntax-highlighting"]
|