this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/redis-async" 5bug-reports: "https://github.com/janestreet/redis-async/issues" 6dev-repo: "git+https://github.com/janestreet/redis-async.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/redis-async/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "5.1.0"} 14 "async" {>= "v0.17" & < "v0.18"} 15 "bignum" {>= "v0.17" & < "v0.18"} 16 "core" {>= "v0.17" & < "v0.18"} 17 "core_kernel" {>= "v0.17" & < "v0.18"} 18 "ppx_jane" {>= "v0.17" & < "v0.18"} 19 "dune" {>= "3.11.0"} 20] 21available: arch != "arm32" & arch != "x86_32" 22synopsis: "Redis client for Async applications" 23description: " 24A client library for Redis versions 6 and higher. 25 26Provides a strongly-typed API with transparent (de)serialization for application-defined 27types. 28 29Supports client tracking and internally uses the RESP3 protocol. 30" 31url { 32src: "https://github.com/janestreet/redis-async/archive/refs/tags/v0.17.0.tar.gz" 33checksum: "sha256=887f10006f90b3d37b01e715dad466d5b56f9b58f20f217c69df825f23829d90" 34}