-
Notifications
You must be signed in to change notification settings - Fork 1
/
http-cookie.opam
47 lines (45 loc) · 1.33 KB
/
http-cookie.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "4.3.0"
synopsis: "HTTP cookie library for OCaml"
description: """
A comprehensive and strict standards compliant HTTP cookies library for ocaml.
http-cookie supports consuming and creating HTTP cookies found in HTTP request Cookie header
and in Set-Cookie header in HTTP response. The library validates all cookie attributes,
cookie name and cookie value for standards conformance and correct usage. The validation
suite is comprehensive and includes validation of domain name, IPv4, IPv6 and HTTP
date-time formats.
The RFC standards/validations implemented by the library are:
- RFC 6265
- RFC 1123
- RFC 1034
- IPV4/IPV6 address validation
"""
maintainer: ["Bikal Lem"]
authors: ["Bikal Lem <[email protected]>"]
license: "MPL-2.0"
homepage: "https://github.com/lemaetech/http-cookie"
bug-reports: "https://github.com/lemaetech/http-cookie/issues"
depends: [
"dune" {>= "3.6"}
"ocaml" {>= "4.10.0"}
"angstrom" {>= "0.15.0"}
"ppx_expect" {with-test}
"mdx" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lemaetech/http-cookie.git"