-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (92 loc) · 2.69 KB
/
Cargo.toml
File metadata and controls
101 lines (92 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
name = "qhook"
version = "0.6.1"
edition = "2024"
rust-version = "1.85"
description = "Lightweight webhook gateway and workflow engine with queue, retry, and signature verification."
license = "Apache-2.0"
repository = "https://github.com/totte-dev/qhook"
homepage = "https://totte-dev.github.io/qhook/"
documentation = "https://totte-dev.github.io/qhook/"
readme = "README.md"
keywords = ["webhook", "workflow", "event-driven", "queue", "orchestration"]
categories = ["web-programming", "asynchronous", "network-programming"]
exclude = [
"tests/",
"examples/",
"docs/",
"scripts/",
"sdks/",
".github/",
".claude/",
".devcontainer/",
".dockerignore",
"docker-compose*.yaml",
"Dockerfile",
"KANBAN.md",
"CLAUDE.md",
"CONTRIBUTING.md",
"SECURITY.md",
"renovate.json",
"CHANGELOG.md",
]
[dependencies]
# Web
axum = "0.8"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "signal", "net", "time"] }
reqwest = { version = "0.13", features = ["json"] }
tower-http = { version = "0.6", features = ["trace", "limit", "compression-gzip"] }
# DB
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "postgres", "chrono"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml_ng = "0.10"
# Crypto
hmac = "0.12"
sha2 = { version = "0.10", features = ["oid"] }
hex = "0.4"
base64 = "0.22"
subtle = "2"
rsa = "0.9"
sha1 = { version = "0.10", features = ["oid"] }
pkcs1 = "0.7"
x509-parser = "0.18"
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Utilities
ulid = "1"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "registry"] }
opentelemetry = { version = "0.31", optional = true }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"], optional = true }
opentelemetry-otlp = { version = "0.31", features = ["http-json"], optional = true }
tracing-opentelemetry = { version = "0.32", optional = true }
regex-lite = "0.1"
ipnet = "2"
jsonschema = "0.45"
governor = "0.10"
anyhow = "1"
croner = "3.0.1"
rand = "0.9"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "process"] }
reqwest = { version = "0.13", features = ["json"] }
serde_json = "1"
serde_yaml_ng = "0.10"
axum = "0.8"
wiremock = "0.6"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
ulid = "1"
proptest = "1"
insta = { version = "1", features = ["json", "yaml"] }
criterion = { version = "0.8", features = ["html_reports"] }
[[bench]]
name = "benchmarks"
harness = false
[features]
default = []
otel = ["opentelemetry", "opentelemetry_sdk", "opentelemetry-otlp", "tracing-opentelemetry"]