this repo has no description
at main 1.9 kB view raw
1opam-version: "2.0" 2synopsis: "Generic programming with extensible transformations" 3description: """ 4Yet another library for generic programming. Provides syntax extensions 5both for camlp5 and PPX which allow decoration of type declarations with 6following compile-time code generation. Provides the way for creating 7plugins (compiled separately from the library) for enchancing supported 8type transformations. 9 10Strongly reminds the `visitors` library from François Pottier. 11During desing of a library of these kind there many possible 12design decision and in many cases we decided to implement 13the decision opposite to the one used in `visitors`. 14 15 16P.S. Since 2023 development team is no longer associated with JetBrains Research""" 17maintainer: ["Kakadu@pm.me"] 18authors: ["https://github.com/dboulytchev" "https://github.com/Kakadu"] 19license: "LGPL-2.1-or-later" 20homepage: "https://github.com/PLTools/GT" 21bug-reports: "https://github.com/PLTools/GT/issues" 22depends: [ 23 "ppxlib" {<= "0.33.0"} 24 "ocaml" {>= "4.14" & < "5.0.0" | >= "5.2.0" & < "5.3.0"} 25 "camlp5" {>= "8.00.05"} 26 "dune" {>= "2.8"} 27 "ocamlgraph" 28 "ppx_inline_test" 29 "ocamlfind" {build} 30 "logger-p5" {build} 31 "bisect_ppx" {build} 32 "conf-m4" {build} 33 "odoc" {with-doc} 34 "odig" {with-doc} 35 "pa_ppx" {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/PLTools/GT.git" 52url { 53 src: "https://github.com/PLTools/GT/releases/download/v0.5.3/GT-v0.5.3.tbz" 54 checksum: [ 55 "sha256=55f8249e780b9a1891d9d4bb5bf2f4f7fdc619a06d9f6f04961afe193cbaaac4" 56 "sha512=3a9422aafb7a4d22c484d03950603e7f05c10512ddeb7675fe5dce73f0ef8f3537eabad1d5ebfb99c6b2e952a6203c793a1cd9d62d2863cef31616a4256b99d2" 57 ] 58} 59x-commit-hash: "50162c20423fabb3c9c8c67151c255ef74f275fa" 60 61x-maintenance-intent: [ "(latest)" ]