I hope you can add Actix web 4 version support
[dependencies] actix-web = "4.0.0-beta.10"
thanks!
I was planning on just waiting until 4.0 final is released to add this.
If you would like to go ahead and make a PR supporting the beta, I would be happy to go ahead and merge it and release.
Hi!
Actix-web 4 just released! :) Is there a chance that this crate will support it in the near future?
Hi @horvbalint @zhangwuqiao ,
I've just added support for actix-web 4 in version 0.8.0. I tested the new example and everything seems to work fine, but please let me know if you have any issues!
Wow, That was fast! Thank you a lot! I tried it out and it is working just fine for my (not too demanding) use-case. One thing: Maybe you should concider changing the App::data() call in the example to App::app_data() as the first one is deprecated now. https://github.com/actix/actix-web/blob/master/actix-web/MIGRATION-4.0.md#appdata-deprecation-warning
@horvbalint Thanks, I saw that, and will do so in the near future.
I'm also planning on wrapping the PartsConfig so that it doesn't matter whether the user adds it to app_data as web::Data<PartsConfig> or just PartsConfig. None of the signatures will change and it will be a minor version update probably later this week.