this repo has no description
1opam-version: "2.0" 2maintainer: "Marek Kubica <marek@xivilization.net>" 3homepage: "https://github.com/Leonidas-from-XIV/orewa" 4doc: "https://leonidas-from-xiv.github.io/orewa/" 5dev-repo: "git+https://github.com/Leonidas-from-XIV/orewa.git" 6bug-reports: "https://github.com/Leonidas-from-XIV/orewa/issues" 7build: [["dune" "build" "-p" name "-j" jobs]] 8run-test: [["dune" "runtest" "-p" name "-j" jobs]] 9depends: [ 10 "async" {>= "v0.11"} 11 "core" {>= "v0.11"} 12 "dune" {>= "1.4"} 13 "ppx_let" {build & >= "v0.11"} 14 "alcotest" {with-test & >= "0.8.4"} 15 "alcotest-async" {with-test & >= "0.8.2"} 16 "ppx_deriving" {>= "4.2"} 17] 18synopsis: "Async-friendly Redis client" 19description: """Async-friendly Redis client 20 21Orewa is a Redis client designed with cooperative multithreading in mind, thus 22operations are non-blocking by default. 23 24It also features an OCaml-friendly Redis API wrapping the stringly constructs 25of the Redis commands into a more typed and less fragile interface that does 26its best to provide a pleasant interface.""" 27authors: "Marek Kubica <marek@xivilization.net>" 28url { 29 src: 30 "https://github.com/Leonidas-from-XIV/orewa/releases/download/0.1.1/orewa-0.1.1.tbz" 31 checksum: [ 32 "sha256=c53c1919cf3b97ceb6091f77c04a7878e38f8df39f1be38087f84309a896cd1c" 33 "sha512=b624b9e3098d509ef705074baf164f786b0661d2354335d240621db81c468f115bab8aa5ce3d626e5811d114a93903799ce9a5077900a9e708ba32409a971e07" 34 ] 35}