1# Cookie
2
3[![CI Status](https://github.com/SergioBenitez/cookie-rs/workflows/CI/badge.svg)](https://github.com/SergioBenitez/cookie-rs/actions)
4[![Current Crates.io Version](https://img.shields.io/crates/v/cookie.svg)](https://crates.io/crates/cookie)
5[![Documentation](https://docs.rs/cookie/badge.svg)](https://docs.rs/cookie)
6
7A Rust library for parsing HTTP cookies and managing cookie jars.
8
9# Usage
10
11Add the following to your `Cargo.toml`:
12
13```toml
14[dependencies]
15cookie = "0.15"
16```
17
18See the [documentation](http://docs.rs/cookie) for detailed usage information.
19
20# License
21
22This project is licensed under either of
23
24 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
25   http://www.apache.org/licenses/LICENSE-2.0)
26 * MIT license ([LICENSE-MIT](LICENSE-MIT) or
27   http://opensource.org/licenses/MIT)
28
29at your option.
30
31### Contribution
32
33Unless you explicitly state otherwise, any contribution intentionally submitted
34for inclusion in `cookie-rs` by you, as defined in the Apache-2.0 license, shall
35be dual licensed as above, without any additional terms or conditions.
36