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: ["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" & < "4.14"} 24 "ocaml-compiler-libs" {>= "v0.11.0"} 25 "ocaml-migrate-parsetree" {>= "2.2.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: "3cf57772fef4666a2992041cf3a670dd2be98603" 53url { 54 src: 55 "https://github.com/ocaml-ppx/ppxlib/releases/download/0.22.2/ppxlib-0.22.2.tbz" 56 checksum: [ 57 "sha256=d0e8a1ebdc6220b1574d7a926f008460c5118ccef79bf9a0ce0242f34cff225a" 58 "sha512=6010a59be6af873eaf193670f9cc8c9a7f091cfd89ec6c5b68d1f0c72d7c6015eec6371c009fc473cf2cb37d24f0934d04d0eacefa567a4945234197c3b31741" 59 ] 60}