this repo has no description
at main 1.8 kB view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Generic programming with extensible transformations" 4description: """ 5Yet another library for generic programming. Provides syntax extensions 6both for camlp5 and PPX which allow decoration of type declarations with 7following compile-time code generation. Provides the way for creating 8plugins (compiled separately from the library) for enchancing supported 9type transformations. 10 11Strongly reminds the `visitors` library from François Pottier. 12During desing of a library of these kind there many possible 13design decision and in many cases we decided to implement 14the decision opposite to the one used in `visitors`. 15 16 17P.S. Since 2023 development team is no longer associated with JetBrains Research""" 18maintainer: ["Kakadu@pm.me"] 19authors: ["https://github.com/dboulytchev" "https://github.com/Kakadu"] 20license: "LGPL-2.1-or-later" 21homepage: "https://github.com/PLTools/GT" 22bug-reports: "https://github.com/PLTools/GT/issues" 23depends: [ 24 "ppxlib" {<= "0.28.0"} 25 "ocaml" {>= "4.13"} 26 "camlp5" {>= "8.00.05"} 27 "dune" {>= "2.8"} 28 "ocamlfind" {build} 29 "logger-p5" {build} 30 "bisect_ppx" {build} 31 "conf-m4" {build} 32 "ocamlgraph" 33 "ppx_inline_test" 34 "odoc" {with-doc} 35] 36build: [ 37 ["dune" "subst"] {dev} 38 [ 39 "dune" 40 "build" 41 "-p" 42 name 43 "-j" 44 jobs 45 "@install" 46 "@runtest" {with-test} 47 "@doc" {with-doc} 48 ] 49] 50dev-repo: "git+https://github.com/PLTools/GT.git" 51url { 52 src: "https://github.com/PLTools/GT/archive/refs/tags/0.5.2.tar.gz" 53 checksum: [ 54 "md5=9d18b96ada4d18fdda0b5f5698273145" 55 "sha512=945070bea4322bf8f7932a259af91432a3c109a05294ba2a27c1c2e9d2796ffb4cc32f6b8e28ff465311277696296ddda531a2ce818e590c09c64c5721d65e19" 56 ] 57}