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"
|
2026-05-26 11:45:31 +02:00
|
|
|
toml = "1.1"
|
|
|
|
|
xmpp = { git = "https://code.bouah.net/pep/xmpp-rs", rev = "559159d4", default-features = false, features = [ "serde", "starttls", "rustls-native-certs", "aws_lc_rs" ] }
|
|
|
|
|
hmac = "0.13"
|
|
|
|
|
sha2 = "0.11"
|
2024-07-10 13:19:04 +02:00
|
|
|
hex = "0.4"
|
2025-11-13 18:29:10 +01:00
|
|
|
camino = { version = "1.2", features = ["serde1"] }
|
2026-01-08 13:44:38 +01:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2024-04-19 20:49:31 +02:00
|
|
|
|
2026-01-08 23:16:01 +01:00
|
|
|
[build-dependencies]
|
|
|
|
|
git2 = "0.20"
|
|
|
|
|
|
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"]
|