You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: crates/socketioxide/src/lib.rs
+4-4
Original file line number
Diff line number
Diff line change
@@ -29,8 +29,8 @@
29
29
nonstandard_style,
30
30
missing_docs
31
31
)]
32
-
//! Socketioxide is a socket.io server implementation that works as a [`tower`] layer/service.
33
-
//! It integrates nicely with the rest of the [`tower`]/[`tokio`]/[`hyper`](https://docs.rs/hyper/latest/hyper/) ecosystem.
32
+
//! Socketioxide is a socket.io server implementation that works as a tower layer/service.
33
+
//! It integrates nicely with the rest of the [`tower`](https://docs.rs/tower/latest/tower/)/[`tokio`]/[`hyper`](https://docs.rs/hyper/latest/hyper/) ecosystem.
34
34
//!
35
35
//! ## Table of contents
36
36
//! * [Features](#features)
@@ -60,7 +60,7 @@
60
60
//! * Polling & Websocket transports
61
61
//!
62
62
//! ## Compatibility
63
-
//! Because it works as a tower [`layer`](tower::layer)/[`service`](tower::Service) or an hyper [`service`](hyper::service::Service)
63
+
//! Because it works as a tower [`layer`](tower_layer::Layer)/[`service`](tower_service::Service) or an hyper [`service`](hyper::service::Service)
64
64
//! you can use it with any http server frameworks that works with tower/hyper:
65
65
//! * [Axum](https://docs.rs/axum/latest/axum/)
66
66
//! * [Warp](https://docs.rs/warp/latest/warp/) (Not supported with socketioxide >= 0.9.0 as long as warp doesn't migrate to hyper v1)
@@ -105,7 +105,7 @@
105
105
//! }
106
106
//! ```
107
107
//! ## Initialisation
108
-
//! The [`SocketIo`] struct is the main entry point of the library. It is used to create a [`Layer`](tower::layer) or a [`Service`](tower::Service).
108
+
//! The [`SocketIo`] struct is the main entry point of the library. It is used to create a [`Layer`](tower_layer::Layer) or a [`Service`](tower_service::Service).
109
109
//! Later it can be used as the equivalent of the `io` object in the JS API.
110
110
//!
111
111
//! When creating your [`SocketIo`] instance, you can use the builder pattern to configure it with the [`SocketIoBuilder`] struct.
0 commit comments