this repo has no description
1opam-version: "2.0" 2synopsis: "Cookie handling for OCaml and ReasonML" 3description: "Parsing and printing cookies in OCaml and Reason" 4maintainer: ["ulrik.strid@outlook.com"] 5authors: ["Ulrik Strid"] 6license: "BSD-3-Clause" 7homepage: "https://ulrikstrid.github.io/ocaml-cookie" 8doc: "https://ulrikstrid.github.io/ocaml-cookie" 9bug-reports: "https://github.com/ulrikstrid/ocaml-cookie/issues" 10depends: [ 11 "dune" {>= "1.11"} 12 "ocaml" {>= "4.07.0"} 13 "uri" 14 "ptime" 15 "astring" 16 "base" {with-test} 17 "alcotest" {with-test} 18 "junit" {with-test} 19 "junit_alcotest" {with-test} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/ulrikstrid/ocaml-cookie.git" 36url { 37 src: 38 "https://github.com/ulrikstrid/ocaml-cookie/releases/download/0.1.8/cookie-0.1.8.tbz" 39 checksum: [ 40 "sha256=bc405a88a6f94453fbaee19b98469818c09b567646a46e1f4ac1a9d5d9fee2db" 41 "sha512=fd66a50db8ca8431e7e0ec847c828f448a61b7fbfea9581a75b2b93c205ec4728b072fa2bdc6c70e7afe41f6e6254756fb176ce9c3f71a0cb6da0086479644ed" 42 ] 43}