this repo has no description
1opam-version: "2.0"
2maintainer: "Zach Shipko <zachshipko@gmail.com>"
3authors: ["Zach Shipko <zachshipko@gmail.com>"]
4homepage: "https://github.com/zshipko/resp-server"
5doc: "https://github.com/zshipko/resp-server"
6license: "ISC"
7dev-repo: "git+https://github.com/zshipko/resp-server.git"
8bug-reports: "https://github.com/zshipko/resp-server/issues"
9tags: ["redis"]
10
11depends: [
12 "ocaml" {>= "4.05.0"}
13 "jbuilder" {>= "1.0+beta7"}
14 "hiredis-value" {>= "0.8"}
15 "conduit-lwt-unix" {>= "1.0" & <"2.0.0"}
16]
17build: [
18 ["jbuilder" "build" "-p" name "-j" jobs]
19 ["jbuilder" "runtest" "-p" name] {with-test}
20]
21synopsis: "A server that communicates using the REdis Serialization Protocol"
22description:
23 "resp-server allows you to build RESP servers quickly, without having to worry about any server implementation details."
24url {
25 src: "https://github.com/zshipko/resp-server/archive/v0.3.tar.gz"
26 checksum: [
27 "sha256=08943b0d5b11214293bb16c21133bcf45888b897f592d58d8ff67bfc83582ae9"
28 "md5=f252270c1a96ce57dd8560798218534f"
29 ]
30}