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 async 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 "async"
16 "result" {>= "1.5"}
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}