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" {<= "0.7"}
15 "conduit-lwt-unix" {>= "1.0" & <"2.0.0"}
16]
17build: [
18 ["jbuilder" "build" "-p" name]
19 ["jbuilder" "runtest"] {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.2.tar.gz"
26 checksum: [
27 "sha256=d079b9a32cbdd48a1376ece0e39a0721bde1a9332686e64e774349771433d82c"
28 "md5=40364d304770cf880797972c6307b98b"
29 ]
30}