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 "ocamlformat-rpc-lib" {= version} 13 "alcotest" {with-test} 14 "base" {>= "v0.12.0" & < "v0.15"} 15 "cmdliner" {< "1.1.0"} 16 "dune-build-info" 17 "either" 18 "fix" 19 "fpath" 20 "menhir" {>= "20201216"} 21 "menhirLib" {>= "20201216"} 22 "menhirSdk" {>= "20201216"} 23 "ocaml-version" {>= "3.3.0"} 24 "ocp-indent" 25 "odoc-parser" {>= "0.9.0" & < "1.0.0"} 26 "re" {>= "1.7.2"} 27 "stdio" {< "v0.15"} 28 "uuseg" {>= "10.0.0"} 29 "uutf" {>= "1.0.1"} 30 "odoc" {with-doc} 31] 32build: [ 33 ["dune" "subst"] {dev} 34 [ 35 "dune" 36 "build" 37 "-p" 38 name 39 "-j" 40 jobs 41 "@install" 42 "@runtest" {with-test} 43 "@doc" {with-doc} 44 ] 45] 46dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git" 47license: ["MIT" "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"] 48url { 49 src: 50 "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.20.0/ocamlformat-0.20.0.tbz" 51 checksum: [ 52 "sha256=26d98d0a0c236c2c941386d6a9d1f935cd984a2b7eade9304b8dc372f8887e09" 53 "sha512=4e95ed41d059e5a1bac520731182ac493f0ce2c6a3bc95eea50c750258cad32963da76044c966942b3cb8b248d7de2466c97257f907ca3c267384422f26044dd" 54 ] 55} 56x-commit-hash: "00dda7f9f641643b1124d6944078cc2532e9a683" # 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