this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "HTTP cookie library for OCaml"
4description: """
5A comprehensive and strict standards compliant HTTP cookies library for ocaml.
6
7 http-cookie supports consuming and creating HTTP cookies found in HTTP request Cookie header
8 and in Set-Cookie header in HTTP response. The library validates all cookie attributes,
9 cookie name and cookie value for standards conformance and correct usage. The validation
10 suite is comprehensive and includes validation of domain name, IPv4, IPv6 and HTTP
11 date-time formats.
12
13 The RFC standards/validations implemented by the library are:
14 - RFC 6265
15 - RFC 1123
16 - RFC 1034
17 - IPV4/IPV6 address validation
18 """
19maintainer: ["Bikal Lem"]
20authors: ["Bikal Lem <gbikal@gmail.com>"]
21license: "MPL-2.0"
22homepage: "https://github.com/lemaetech/http-cookie"
23bug-reports: "https://github.com/lemaetech/http-cookie/issues"
24depends: [
25 "dune" {>= "3.6"}
26 "ocaml" {>= "4.10.0"}
27 "angstrom" {>= "0.15.0"}
28 "ppx_expect" {with-test}
29 "mdx" {with-test}
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/archive/refs/tags/v4.3.0.tar.gz"
50 checksum: [
51 "md5=b837250b924eb52aadf1342007c776db"
52 "sha512=c9d1e86c83c2e9b440cf22d7d0d37a31da358e95ff2eda2158de164c0add937c626076ca0465b17c2aca1edf0305d1f74e4720bd45edfa938651d340556038ee"
53 ]
54}