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" 5doc: "https://zshipko.github.io/resp/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/zshipko/resp.git" 8bug-reports: "https://github.com/zshipko/resp/issues" 9depends: 10[ 11 "ocaml" {>= "4.05.0"} 12 "dune" 13 "resp" {>= "0.9.1" & < "0.10.0"} 14 "resp-client" {>= "0.9.1" & < "0.10.0"} 15 "resp-server" {>= "0.9.1" & < "0.10.0"} 16 "conduit-lwt-unix" {>= "1.3"} 17 "alcotest" {with-test & < "1.0.0"} 18 "alcotest-lwt" {with-test & < "1.0.0"} 19] 20 21build: 22[ 23 ["dune" "build" "-p" name "-j" jobs] 24 ["dune" "runtest" "-p" name] {with-test} 25] 26 27synopsis: """ 28Redis serialization protocol library for Unix 29""" 30url { 31 src: "https://github.com/zshipko/resp/archive/v0.9.1.tar.gz" 32 checksum: [ 33 "md5=1e52d65e20b229f18e0d009473afb5cb" 34 "sha512=7a2c31c7e83c285408ac39aa29c002a6c074e0d8be18cf7cb5f29b7499440071d49e037a8bca1536ec5742a0058d77069c1ffe8c6b05176aecd94c2377538ae5" 35 ] 36}