[go: up one dir, main page]

cookie 0.0.1

Crate for parsing HTTP cookie headers and managing a cookie jar. Supports encrypted, signed, and permanent cookie chars composed together in amanner similar to Rails' cookie jar.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]

name = "cookie"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
version = "0.0.1"
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/cookie-rs"
description = """
Crate for parsing HTTP cookie headers and managing a cookie jar. Supports
encrypted, signed, and permanent cookie chars composed together in amanner
similar to Rails' cookie jar.
"""

[dependencies]
openssl = "*"
url = "*"
time = "*"