You're almost certainly trying to use two versions of cookie
at the same time. tower_cookies::Cookie
is probably not the same version as cookie::Cookie
, and thus not the same types.
Created 1 month ago
You're almost certainly trying to use two versions of cookie
at the same time. tower_cookies::Cookie
is probably not the same version as cookie::Cookie
, and thus not the same types.
Trait bound error after upgrading to 0.17.0 #209
My web application works with version 0.16.2, but after upgrading to 0.17.0,
set_same_site
function gives error. I create a cookie like the following.Diagnostics says:
Could anyone tell me how to fix this?