1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-05-19 07:23:17 +02:00

Re-export mime types for easier access #3603 (#3624)

* Re-export mime types for easier access #3603

* docs: update changelog

---------

Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
Alexander 2025-05-10 02:40:21 +03:00 committed by GitHub
parent 25511dfb38
commit 65f254d1b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Add `HttpServer::shutdown_signal()` method. - Add `HttpServer::shutdown_signal()` method.
- Mark `HttpServer` as `#[must_use]`. - Mark `HttpServer` as `#[must_use]`.
- Re-export `mime` dependency.
- Update `brotli` dependency to `8`. - Update `brotli` dependency to `8`.
## 4.10.2 ## 4.10.2

View File

@ -78,7 +78,7 @@ pub use actix_http::{body, HttpMessage};
#[cfg(feature = "cookies")] #[cfg(feature = "cookies")]
#[doc(inline)] #[doc(inline)]
pub use cookie; pub use cookie;
pub use mime;
mod app; mod app;
mod app_service; mod app_service;
mod config; mod config;