this repo has no description
1opam-version: "2.0" 2synopsis: "Standard library for ppx rewriters" 3description: """ 4Ppxlib is the standard library for ppx rewriters and other programs 5that manipulate the in-memory reprensation of OCaml programs, a.k.a 6the "Parsetree". 7 8It also comes bundled with two ppx rewriters that are commonly used to 9write tools that manipulate and/or generate Parsetree values; 10`ppxlib.metaquot` which allows to construct Parsetree values using the 11OCaml syntax directly and `ppxlib.traverse` which provides various 12ways of automatically traversing values of a given type, in particular 13allowing to inject a complex structured value into generated code. 14""" 15maintainer: ["Jane Street developers"] 16authors: ["Jane Street Group, LLC"] 17license: "MIT" 18homepage: "https://github.com/ocaml-ppx/ppxlib" 19doc: "https://ocaml-ppx.github.io/ppxlib/" 20bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues" 21depends: [ 22 "dune" {>= "2.7"} 23 "ocaml" {>= "4.04.1" & < "4.13"} 24 "ocaml-compiler-libs" {>= "v0.11.0"} 25 "ocaml-migrate-parsetree" {>= "2.1.0"} 26 "ppx_derivers" {>= "1.0"} 27 "sexplib0" {>= "v0.12"} 28 "sexplib0" {with-test & < "v0.15"} # Printexc.register_printer in sexplib0 changed 29 "stdlib-shims" 30 "ocamlfind" {with-test} 31 "re" {with-test & >= "1.9.0"} 32 "cinaps" {with-test & >= "v0.12.1"} 33 "base" {with-test} 34 "stdio" {with-test} 35 "odoc" {with-doc} 36] 37build: [ 38 ["dune" "subst"] {dev} 39 [ 40 "dune" 41 "build" 42 "-p" 43 name 44 "-j" 45 jobs 46 "@install" 47 "@runtest" {with-test} 48 "@doc" {with-doc} 49 ] 50] 51dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git" 52x-commit-hash: "06a2c9bdad8c1d3361a3d9430e9bf58476b08590" 53url { 54 src: 55 "https://github.com/ocaml-ppx/ppxlib/releases/download/0.22.0/ppxlib-0.22.0.tbz" 56 checksum: [ 57 "sha256=3eeb91e03966662284a3222e612dee7f4fa2b7637c53d9572d2a74134bb96d7a" 58 "sha512=425051dff9df53579a6edd17369d66c10f87a78daeddf1691e50997990ed643e874fcc6a30112a4dacbfd2d0097a19445354e04cd920d9522f76c51cdbc7f1db" 59 ] 60}