this repo has no description
1opam-version: "2.0" 2maintainer: "contact@nomadic-labs.com" 3authors: [ "Nomadic Labs" "Ocamlpro" ] 4license: "MIT" 5homepage: "https://gitlab.com/nomadic-labs/resto" 6bug-reports: "https://gitlab.com/nomadic-labs/resto/issues" 7dev-repo: "git+https://gitlab.com/nomadic-labs/resto" 8synopsis: "A minimal OCaml library for type-safe HTTP/JSON RPCs" 9 10build: [ 11 [ "dune" "build" "-p" name "-j" jobs ] 12] 13 14depends: [ 15 "ocaml" { >= "4.10" } 16 "dune" { >= "1.11" } 17 "uri" {>= "1.9.0" } 18 "json-data-encoding" {>= "0.9.1" & < "1.0" & with-test } 19 "json-data-encoding-bson" {>= "0.9.1" & < "1.0" & with-test } 20 "ezjsonm" {with-test} 21 "lwt" {with-test} 22 "base-unix"{with-test} 23 "alcotest" { >= "1.5.0" & with-test} 24 "alcotest-lwt" { >= "1.5.0" & with-test} 25 "ocamlformat" { = "0.20.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available 26 "odoc" { with-doc } 27] 28 29conflicts: [ "result" {< "1.5"} ] 30url { 31 src: 32 "https://gitlab.com/nomadic-labs/resto/-/archive/v1.0/resto-v1.0.tar.gz" 33 checksum: [ 34 "md5=394275a7579c7dbcb29631b447006253" 35 "sha512=20f7d3ee730b4b202707ec7802662733ec2e3db76a7be78d4f794eb22796d8fc54e3e16e5a8e2fff80b391ea84cfbe470044772b815eebfd389d0a6754e1df85" 36 ] 37}