Upgrade cookie to 0.15 and cookie_store to 0.13.0

cookie_store default features pulls in reqwest, so we stop that
by specifying the exact features wanted.
This commit is contained in:
Martin Algesten
2021-03-14 13:28:35 +01:00
parent 0dc609fc30
commit 9a9dd4ee6c
2 changed files with 3 additions and 3 deletions

View File

@@ -43,6 +43,6 @@ impl CookieTin {
I: Iterator<Item = cookie::Cookie<'static>>,
{
let mut store = self.inner.write().unwrap();
store.store_response_cookies(cookies, url)
store.store_response_cookies(cookies, url);
}
}