this repo has no description
1opam-version: "2.0" 2maintainer: "Simon Cruanes" 3authors: [ 4 "Mike Wells" 5 "David Höppner" 6 "Aleksandr Dinu" 7] 8homepage: "https://github.com/0xffea/ocaml-redis" 9bug-reports: "https://github.com/0xffea/ocaml-redis/issues" 10license: "BSD-3-Clause" 11tags: ["redis" "lwt"] 12dev-repo: "git+https://github.com/0xffea/ocaml-redis.git" 13synopsis: "Redis client (lwt interface)" 14build: [ 15 ["dune" "build" "-p" name "-j" jobs] 16 # ["dune" "runtest" "-p" name "-j" jobs] {with-test} # need network 17 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 18] 19depends: [ 20 "dune" {>= "1.0"} 21 "redis" { = version } 22 "lwt" {>= "2.4.7"} 23 "ocaml" { >= "4.03.0" } 24 "ounit2" {with-test} 25 "containers" {with-test} 26 "odoc" {with-doc} 27] 28url { 29 src: "https://github.com/0xffea/ocaml-redis/archive/0.5.tar.gz" 30 checksum: [ 31 "md5=555ddcb04ef97e0fffbb011461cbe35e" 32 "sha512=46c34a751a93197ea7ca71cf797b1e5c3f9f74dacbe5d4cd064d20a008cbfe078bc331627bf5b5fcdbab5aab939a3c9042c260d10981bd81ecc4932345dd0e47" 33 ] 34}