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.07.0"} 10 "base-unix" 11 "dune" {>= "1.0"} 12 "mirage-crypto" {< "1.0.0"} 13 "mirage-crypto-rng" {< "1.0.0"} 14 "base64" {>= "3.1.0"} 15 "ounit" {with-test & >= "1.0.2"} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 ["dune" "build" "-p" name "-j" jobs] 20] 21dev-repo: "git+https://github.com/inhabitedtype/ocaml-session.git" 22synopsis: "A session manager for your everyday needs" 23description: """ 24ocaml-session is an session manager that handles cookie headers and backend 25storage for HTTP servers. The library supports CoHTTP and Webmachine; Async and 26Lwt; and pluggable backing stores based on a functor interface. 27""" 28url { 29 src: "https://github.com/inhabitedtype/ocaml-session/archive/0.5.0.tar.gz" 30 checksum: [ 31 "sha256=bac89b05335fae06ba4d060687aa28578977a296cb46344784f16df1ba1f2360" 32 "md5=96a6cf425da69c010ecef492af339e8c" 33 ] 34}