Skip to content

Commit 733d568

Browse files
committed
Minor docs re Axum
1 parent 6074b4d commit 733d568

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ mechanism to support various Protocol Bindings, each of which is
2626
enabled by a specific [feature flag]:
2727

2828
* `actix`: Integration with [actix](https://actix.rs/).
29+
* `axum`: Integration with [axum](https://lib.rs/crates/axum).
2930
* `warp`: Integration with [warp](https://github.com/seanmonstar/warp/).
3031
* `reqwest`: Integration with [reqwest](https://github.com/seanmonstar/reqwest).
3132
* `rdkafka`: Integration with [rdkafka](https://fede1024.github.io/rust-rdkafka).
@@ -59,6 +60,7 @@ let event = EventBuilderV10::new()
5960
Checkout the examples using our integrations to learn how to send and receive events:
6061

6162
* [Actix Web Example](example-projects/actix-web-example)
63+
* [Axum Example](example-projects/axum-example)
6264
* [Reqwest/WASM Example](example-projects/reqwest-wasm-example)
6365
* [Kafka Example](example-projects/rdkafka-example)
6466
* [Warp Example](example-projects/warp-example)

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//! * The [`EventBuilder`] trait and implementations, to create [`Event`] instances
3030
//! * The implementation of [`serde::Serialize`] and [`serde::Deserialize`] for [`Event`] to serialize/deserialize CloudEvents to/from JSON
3131
//! * Traits and utilities in [`message`] to implement Protocol Bindings
32-
//! * Feature-guarded modules for various Protocol Binding implementations, e.g. actix, reqwest, warp, rdkafka
32+
//! * Feature-guarded modules for various Protocol Binding implementations, e.g. actix, axum, reqwest, warp, rdkafka
3333
//!
3434
//! ## Feature flags
3535
//!

0 commit comments

Comments
 (0)