this repo has no description
1opam-version: "2.0"
2synopsis: "HTTP cookie library for OCaml"
3description: """
4A comprehensive and strict standards compliant HTTP cookies library for ocaml.
5
6 http-cookie supports consuming and creating HTTP cookies found in HTTP request Cookie header
7 and in Set-Cookie header in HTTP response. The library validates all cookie attributes,
8 cookie name and cookie value for standards conformance and correct usage. The validation
9 suite is comprehensive and includes validation of domain name, IPv4, IPv6 and HTTP
10 date-time formats.
11
12 The RFC standards/validations implemented by the library are:
13 - RFC 6265
14 - RFC 1123
15 - RFC 1034
16 - IPV4/IPV6 address validation
17 """
18maintainer: ["Bikal Lem"]
19authors: ["Bikal Lem <gbikal@gmail.com>"]
20license: "MPL-2.0"
21homepage: "https://github.com/lemaetech/http-cookie"
22bug-reports: "https://github.com/lemaetech/http-cookie/issues"
23depends: [
24 "dune" {>= "2.8"}
25 "ocaml" {>= "4.10.0"}
26 "fmt" {>= "0.8.9"}
27 "angstrom" {>= "0.15.0"}
28 "ppx_expect" {with-test}
29 "mdx" {with-test & < "2.0"}
30 "odoc" {with-doc}
31]
32build: [
33 ["dune" "subst"] {dev}
34 [
35 "dune"
36 "build"
37 "-p"
38 name
39 "-j"
40 jobs
41 "@install"
42 "@runtest" {with-test}
43 "@doc" {with-doc}
44 ]
45]
46dev-repo: "git+https://github.com/lemaetech/http-cookie.git"
47url {
48 src:
49 "https://github.com/lemaetech/http-cookie/releases/download/v4.2.0/http-cookie-v4.2.0.tbz"
50 checksum: [
51 "sha256=cdb91d7ee5420c38503fd3b333d0349a2c6689166b8c17f95fda8cd1c2454ed6"
52 "sha512=2f024dfaa1062e5701e811f933ce84ec674b579a3cded8a5279fc34366a4de360cd5f0ca3f68311f6ff527ec8a8a5c71325f8849bb05b8e98bf467bd33762191"
53 ]
54}
55x-commit-hash: "c3a09b5f537af2d1c2ecd2d5d1904b5224d2e8e6"