this repo has no description
1opam-version: "2.0" 2synopsis: "Standard infrastructure for ppx rewriters" 3description: """ 4Ppxlib is the standard infrastructure for ppx rewriters 5and other programs that manipulate the in-memory representation of 6OCaml programs, a.k.a the "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: ["opensource@janestreet.com"] 16authors: ["Jane Street Group, LLC <opensource@janestreet.com>"] 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" & < "5.2.0" & != "5.1.0~alpha1"} 24 "ocaml" {with-test & < "5.1.0~alpha2"} 25 "ocaml-compiler-libs" {>= "v0.11.0"} 26 "ppx_derivers" {>= "1.0"} 27 "sexplib0" {>= "v0.12"} 28 "sexplib0" {with-test & >= "v0.15"} 29 "stdlib-shims" 30 "ocamlfind" {with-test} 31 "re" {with-test & >= "1.9.0"} 32 "cinaps" {with-test & >= "v0.12.1"} 33 "odoc" {with-doc} 34] 35conflicts: [ 36 "ocaml-migrate-parsetree" {< "2.0.0"} 37 "base-effects" 38] 39build: [ 40 ["dune" "subst"] {dev} 41 [ 42 "dune" 43 "build" 44 "-p" 45 name 46 "-j" 47 jobs 48 "@install" 49 "@runtest" {with-test} 50 "@doc" {with-doc} 51 ] 52] 53dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git" 54url { 55 src: 56 "https://github.com/ocaml-ppx/ppxlib/releases/download/0.30.0/ppxlib-0.30.0.tbz" 57 checksum: [ 58 "sha256=dd4a63bde9d29b49810e04d7653937c932f177a941ca0e1982b6ad53ac442110" 59 "sha512=0a8c4fa894aaf445cb93213eaa32afb2772235da44aa28c917aba237731a44d5c2687bd960fca49bff62bbe0f9b3fdd9c15730313b429214ae281069f862ffdc" 60 ] 61} 62x-commit-hash: "f0496c9ce731dcffbd26e208b0596627607a496b"