This is a wrapper crate for cookies, that implements the [`std::convert::From`] for several other cookie types/crates, like [`cookie`](https://docs.rs/cookie/latest/cookie/), [`cookie_store`](https://docs.rs/cookie_store/latest/cookie_store/) and the [`thirtyfour` cookie type](https://docs.rs/thirtyfour/latest/thirtyfour/). It also supports creating cookies from a string in the [cookies.txt/netscape](https://curl.se/docs/http-cookies.html) format. ```rust let mut cookies_file = File::open("foo.txt")?; let mut cookie_txt = String::new(); cookies_file.read_to_string(&mut cookie_txt)?; let cookies = Cookies::try_from(&cookie_txt)?; ```