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.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: "5830d89a7cbe3a683a5d7d9948e2d14cffffa8d3" 53url { 54 src: 55 "https://github.com/ocaml-ppx/ppxlib/releases/download/0.22.1/ppxlib-0.22.1.tbz" 56 checksum: [ 57 "sha256=216c802ee606c9d9f0d1e60dfe29bb69b9ae0bf12828cb148e9867abf568c5f7" 58 "sha512=3a35c3638316ee7c3acfa2e3ffbe1f7d17687e2eb1cfea6461e1be140498515d3593b5f2bf2517d5f231f214414f7cbec761403b459a7f147dcf713bf3f78106" 59 ] 60}