this repo has no description
at main 1.8 kB view raw
1opam-version: "2.0" 2 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 remids 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 17maintainer: "kakadu@pm.me" 18authors: ["https://github.com/dboulytchev" "https://github.com/Kakadu"] 19homepage: "https://github.com/JetBrains-Research/GT" 20bug-reports: "https://github.com/JetBrains-Research/GT/issues" 21 22depends: [ 23 "ocaml" { >= "4.10.0" } 24 # 4.10 is required only because camlp5 has a few glitches in old compilers 25 # because a few features are not properly backported (and probably will never be) 26 "camlp5" { >= "8.00" } 27 "ocamlfind" 28 "conf-m4" { build } 29 "dune" { >= "2.7.1" } 30 "ocamlgraph" 31 "ppxlib" {>= "0.22.0" & < "0.23.0"} 32 "logger-p5" 33 "ocaml-migrate-parsetree" { >= "2.1.0" } 34 "base" 35 "ppx_expect" {with-test} 36] 37 38build: [ 39 ["dune" "subst"] {dev} 40 ["dune" "build" "-p" "GT,GT-p5" "-j" jobs] 41] 42install: ["dune" "install" "-p" "GT,GT-p5"] 43 44dev-repo: "git+https://github.com/JetBrains-Research/GT.git" 45url { 46 src: "https://github.com/JetBrains-Research/GT/archive/v0.4.1.tar.gz" 47 checksum: [ 48 "sha256=15924a175fcaaa57286853e8129159a0ce207f31b33f83d7f8aa436da1e17519" 49 "sha512=03d32a6b745b2ae04f4cd434b13c614acd66dfa7cb90c748c951b92bf517a9de7cc870f49bf31d94112f4b6efc019b1258d47b0177adfb664b1f22ff2375ae91" 50 ] 51}