-
Notifications
You must be signed in to change notification settings - Fork 43
/
ocaml-migrate-parsetree.opam
33 lines (31 loc) · 1.11 KB
/
ocaml-migrate-parsetree.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
flags: deprecated
maintainer: "[email protected]"
authors: [
"Frédéric Bour <[email protected]>"
"Jérémie Dimino <[email protected]>"
]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/ocaml-ppx/ocaml-migrate-parsetree"
bug-reports: "https://github.com/ocaml-ppx/ocaml-migrate-parsetree/issues"
dev-repo: "git+https://github.com/ocaml-ppx/ocaml-migrate-parsetree.git"
doc: "https://ocaml-ppx.github.io/ocaml-migrate-parsetree/"
tags: [ "syntax" "org:ocamllabs" ]
build: ["dune" "build" "-p" name "-j" jobs]
run-test: ["dune" "runtest" "-p" name "-j" jobs]
depends: [
"dune" {>= "2.3"}
"ocaml" {>= "4.02.3" & < "5.2"}
"cinaps" {with-test & >= "v0.13.0"}
]
conflicts: [
"base-effects"
]
synopsis: "Convert OCaml parsetrees between different versions"
description: """
Deprecated. Please, use Ppxlib instead.
Convert OCaml parsetrees between different versions
This library converts parsetrees, outcometree and ast mappers between
different OCaml versions. High-level functions help making PPX
rewriters independent of a compiler version.
"""