<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nalagatla Vinay</title>
    <description>The latest articles on DEV Community by Nalagatla Vinay (@nalagatla_vinay_b4674891d).</description>
    <link>https://dev.to/nalagatla_vinay_b4674891d</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3755322%2Fded23941-7d64-4e20-bfcb-34a475e064d1.png</url>
      <title>DEV Community: Nalagatla Vinay</title>
      <link>https://dev.to/nalagatla_vinay_b4674891d</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nalagatla_vinay_b4674891d"/>
    <language>en</language>
    <item>
      <title>Webhook Dispatcher: a Rust library for reliable webhooks (retries, DLQ, signatures, durability)</title>
      <dc:creator>Nalagatla Vinay</dc:creator>
      <pubDate>Thu, 05 Feb 2026 17:47:51 +0000</pubDate>
      <link>https://dev.to/nalagatla_vinay_b4674891d/webhook-dispatcher-a-rust-library-for-reliable-webhooks-retries-dlq-signatures-durability-3c6n</link>
      <guid>https://dev.to/nalagatla_vinay_b4674891d/webhook-dispatcher-a-rust-library-for-reliable-webhooks-retries-dlq-signatures-durability-3c6n</guid>
      <description>&lt;p&gt;When I was building webhook features, I kept hitting the same wall: either build an entire internal webhook platform or use a hosted service. For a small team, both options are heavy.&lt;/p&gt;

&lt;p&gt;So I built the middle path: Webhook Dispatcher, a Rust library you embed in your app to deliver webhooks reliably.&lt;/p&gt;

&lt;p&gt;Why this exists&lt;br&gt;
Webhooks sound simple until you need production reliability. You end up dealing with:&lt;/p&gt;

&lt;p&gt;backpressure&lt;br&gt;
retries + jitter&lt;br&gt;
delivery status&lt;br&gt;
dead‑letter queues&lt;br&gt;
signing + verification&lt;br&gt;
rate limits&lt;br&gt;
storage for durability&lt;br&gt;
This library gives you all of that in a single crate.&lt;/p&gt;

&lt;p&gt;Features&lt;br&gt;
Fair scheduling with sharded queues&lt;br&gt;
Retries + jitter + DLQ&lt;br&gt;
HMAC signing with timestamps&lt;br&gt;
Per‑endpoint + per‑tenant rate limits&lt;br&gt;
Optional Redis/Postgres durability&lt;br&gt;
Delivery status + replay helpers&lt;br&gt;
Quickstart&lt;br&gt;
use webhook_dispatcher::{Dispatcher, DispatcherConfig, Endpoint, Event};&lt;/p&gt;

&lt;h1&gt;
  
  
  [tokio::main]
&lt;/h1&gt;

&lt;p&gt;async fn main() {&lt;br&gt;
    let dispatcher = Dispatcher::new(DispatcherConfig::default());&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let endpoint = Endpoint::new("orders", "https://example.com/webhook")
    .with_secret(b"supersecret")
    .with_rate_limit(100, 200);

dispatcher.register_endpoint(endpoint).await;

let event = Event::new("evt_123", r#"{"id":123}"#.as_bytes());
let _ = dispatcher.dispatch(event, vec!["orders".into()]).await;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;br&gt;
Repo + Crate&lt;br&gt;
Crate: webhook-dispatcher (crates.io)&lt;br&gt;
GitHub: &lt;a href="https://github.com/webhook-labs/webhook-dispatcher" rel="noopener noreferrer"&gt;https://github.com/webhook-labs/webhook-dispatcher&lt;/a&gt;&lt;br&gt;
Feedback welcome&lt;br&gt;
I’d love feedback from anyone who’s built webhook systems or reliability tooling. What would you expect in v1? What’s missing?&lt;/p&gt;

</description>
      <category>api</category>
      <category>backend</category>
      <category>rust</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
