• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H03-May-2022-3628

scripts/H03-May-2022-2013

src/H03-May-2022-4,0631,710

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D29-Nov-197320 32

.travis.ymlH A D29-Nov-1973168 1411

CHANGELOG.mdH A D29-Nov-19734.1 KiB13087

Cargo.tomlH A D01-Jan-19701.8 KiB7160

Cargo.toml.orig-cargoH A D29-Nov-19731.3 KiB4135

LICENSE-APACHEH A D29-Nov-197310.6 KiB203170

LICENSE-MITH A D29-Nov-19731.1 KiB2723

README.mdH A D29-Nov-19731.1 KiB3623

build.rsH A D29-Nov-1973129 65

README.md

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