1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

Allow to construct Data instances to avoid double Arc for Send + Sync types.

This commit is contained in:
Nikolay Kim
2019-04-29 09:26:12 -07:00
parent b51b5b763c
commit 29a841529f
4 changed files with 35 additions and 17 deletions

View File

@ -1,5 +1,10 @@
# Changes
### Changed
* Allow to construct `Data` instances to avoid double `Arc` for `Send + Sync` types.
## [1.0.0-beta.2] - 2019-04-24
### Added