this repo has no description
1opam-version: "2.0" 2synopsis: "Auto-formatter for OCaml code (RPC mode)" 3description: 4 "OCamlFormat is a tool to automatically format OCaml code in a uniform style. This package defines a RPC interface to OCamlFormat" 5maintainer: ["OCamlFormat Team <ocamlformat-dev@lists.ocaml.org>"] 6authors: ["Josh Berdine <jjb@fb.com>"] 7homepage: "https://github.com/ocaml-ppx/ocamlformat" 8bug-reports: "https://github.com/ocaml-ppx/ocamlformat/issues" 9depends: [ 10 "dune" {>= "2.8"} 11 "ocaml" {>= "4.08" & < "4.15"} 12 "alcotest" {with-test} 13 "ocamlformat" {= version} 14 "ocamlformat-rpc-lib" {= version} 15 "odoc" {with-doc} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@runtest" {with-test} 28 "@doc" {with-doc} 29 ] 30] 31dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git" 32license: ["MIT" "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"] 33url { 34 src: 35 "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.21.0/ocamlformat-0.21.0.tbz" 36 checksum: [ 37 "sha256=2a1817f6bc581ff0cce9f0aa9687b897b02726e2ab75749ee98d57637057332d" 38 "sha512=db47f843bfc5a438d43f7c482cde86bd13f05a6825e2a0afa80614b651a88ae8b3805cca45da6bcf9189e741e0c79d38652b0bc47efe636c1502a66676dcb28e" 39 ] 40} 41x-commit-hash: "63e478f1186a03c7e4dfeeb39b3d8fe2ef1cb429" # OCamlFormat is distributed under the MIT license. Parts of the OCaml library are vendored for OCamlFormat and distributed under their original LGPL 2.1 license