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"
6dev-repo: "git+https://github.com/inhabitedtype/ocaml-session.git"
7bug-reports: "https://github.com/inhabitedtype/ocaml-session/issues"
8
9build: [
10 ["jbuilder" "subst" "-p" name] {dev}
11 ["jbuilder" "build" "-p" name]
12 ["jbuilder" "runtest" "-p" name] {with-test}
13]
14depends: [
15 "ocaml" {>= "4.03.0"}
16 "jbuilder" {>= "1.0+beta9"}
17 "nocrypto"
18 "result"
19 "ounit" {with-test & >= "1.0.2"}
20]
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."""
26url {
27 src: "https://github.com/inhabitedtype/ocaml-session/archive/0.4.0.tar.gz"
28 checksum: [
29 "sha256=a25e23a524832ebeb80e59e046b42b6f02094ec74e736be942d8a4c30e231b50"
30 "md5=a770a08805dd71276b14f5dcb2ac1dd6"
31 ]
32}