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