this repo has no description
1opam-version: "2.0"
2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
3authors: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
4license: "BSD-3-Clause"
5homepage: "https://github.com/inhabitedtype/ocaml-session"
6bug-reports: "https://github.com/inhabitedtype/ocaml-session/issues"
7doc: "https://inhabitedtype.github.io/ocaml-session/"
8depends: [
9 "ocaml" {>= "4.03.0"}
10 "dune" {>= "1.0"}
11 "nocrypto"
12 "result"
13 "ounit" {with-test & >= "1.0.2"}
14]
15build: [
16 ["dune" "subst"] {dev}
17 ["dune" "build" "-p" name "-j" jobs]
18 ["dune" "runtest" "-p" name "-j" jobs] {with-test & ocaml:version < "5.0.0"}
19]
20dev-repo: "git+https://github.com/inhabitedtype/ocaml-session.git"
21synopsis: "A session manager for your everyday needs"
22description: """
23ocaml-session is an session manager that handles cookie headers and backend
24storage for HTTP servers. The library supports CoHTTP and Webmachine; Async and
25Lwt; and pluggable backing stores based on a functor interface.
26"""
27url {
28 src: "https://github.com/inhabitedtype/ocaml-session/archive/0.4.1.tar.gz"
29 checksum: [
30 "sha256=1956795ceb0ce975d46504958002d1456f9182d08a3c36e9510c811734bc33e5"
31 "md5=1398d94c2e5e207b96a591a1834495ee"
32 ]
33}