1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 15:07:42 +02:00

Remove Sized Bound for web::Data (#1712)

This commit is contained in:
PeterUlb
2020-09-29 23:44:12 +02:00
committed by GitHub
parent b4e02fe29a
commit b5812b15f0
2 changed files with 27 additions and 6 deletions

View File

@ -5,6 +5,7 @@
* Add `TrailingSlash::MergeOnly` behaviour to `NormalizePath`, which allow `NormalizePath`
to keep the trailing slash's existance as it is. [#1695]
* Fix `ResourceMap` recursive references when printing/debugging. [#1708]
* Remove bound `std::marker::Sized` from `web::Data` to support storing `Arc<dyn Trait>` via `web::Data::from` [#1710]
[#1708]: https://github.com/actix/actix-web/pull/1708