this repo has no description
1opam-version: "2.0" 2synopsis: 3 "High-level and functional interface to the Format module of the OCaml standard library" 4description: """ 5 6This module offers a high-level and functional interface to the Format module of 7the OCaml standard library. It is a pretty-printing facility, i.e. it takes as 8input some code represented as a tree and formats this code into the most 9visually satisfying result, breaking and indenting lines of code where 10appropriate. 11 12Input data must be first modelled and converted into a tree using 3 kinds of 13nodes: 14 15* atoms 16* lists 17* labelled nodes 18 19Atoms represent any text that is guaranteed to be printed as-is. Lists can model 20any sequence of items such as arrays of data or lists of definitions that are 21labelled with something like "int main", "let x =" or "x:".""" 22maintainer: ["martin@mjambon.com" "rudi.grinberg@gmail.com"] 23authors: ["Martin Jambon"] 24license: "BSD-3-Clause" 25homepage: "https://github.com/ocaml-community/easy-format" 26doc: "https://mjambon.github.io/mjambon2016/easy-format.html" 27bug-reports: "https://github.com/ocaml-community/easy-format/issues" 28depends: [ 29 "dune" {>= "3.2" & >= "1.10"} 30 "ocaml" {>= "4.08"} 31 "odoc" {with-doc} 32] 33build: [ 34 ["dune" "subst"] {dev} 35 [ 36 "dune" 37 "build" 38 "-p" 39 name 40 "-j" 41 jobs 42 "@install" 43 "@runtest" {with-test} 44 "@doc" {with-doc} 45 ] 46] 47dev-repo: "git+https://github.com/ocaml-community/easy-format.git" 48url { 49 src: 50 "https://github.com/ocaml-community/easy-format/releases/download/1.3.4/easy-format-1.3.4.tbz" 51 checksum: [ 52 "sha256=1dbf051e9f68574dde6e2e254a66b9c524ca425e80b36e99af96ed964ab610c3" 53 "sha512=90264864dde4cbf51f60fb5c21cf033e11bdeb662e76b62ce27b496c298ca9102174885ed7a6d29a6b8e43089e27d5bb5be247f88d9739c15cfd8470fec29d33" 54 ] 55} 56x-commit-hash: "ba4962884509ceec63905dd6e0ccb429be4f9f66"