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"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
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"
|
2024-07-04 00:38:03 +02:00
|
|
|
hyper = { version = "1.4", 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"
|
2024-07-09 23:20:19 +02:00
|
|
|
bytes = "1.6"
|
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"
|
2024-07-02 21:50:31 +02:00
|
|
|
toml = "0.8"
|
2024-12-29 21:06:13 +01:00
|
|
|
xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", rev = "ec72d71551", default-features = false, features = [ "serde", "starttls-native"] }
|
2024-07-10 13:19:04 +02:00
|
|
|
hmac = "0.12"
|
|
|
|
|
sha2 = "0.10"
|
|
|
|
|
hex = "0.4"
|
2024-08-07 11:35:47 +02:00
|
|
|
camino = { version = "1.1", features = ["serde"] }
|
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"]
|