Update all dependencies

webpki and webpki roots are not compatible with current rustls,
so they are held back.:wq
This commit is contained in:
Martin Algesten
2021-08-23 21:21:39 +02:00
parent 4ed42088b7
commit 551f4289fb
2 changed files with 7 additions and 7 deletions

View File

@@ -33,8 +33,8 @@ impl CookieTin {
pub(crate) fn get_request_cookies(&self, url: &Url) -> Vec<cookie::Cookie> {
let store = self.inner.read().unwrap();
store
.get_request_cookies(url)
.map(|c| cookie::Cookie::new(c.name().to_owned(), c.value().to_owned()))
.get_request_values(url)
.map(|(name, value)| cookie::Cookie::new(name.to_owned(), value.to_owned()))
.collect()
}