forked from ocaml-ppx/ppx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastlib.opam
More file actions
39 lines (39 loc) · 1.09 KB
/
astlib.opam
File metadata and controls
39 lines (39 loc) · 1.09 KB
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
34
35
36
37
38
39
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Compatibility layer for OCaml compiler AST"
description: """
Provides types for the OCaml compiler AST, along with versioned
interfaces for constructing and deconstructing them so that ppx transformers can
be easily migrated to new versions of the compiler."""
maintainer: ["opensource@janestreet.com"]
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/ocaml-ppx/ppx"
bug-reports: "https://github.com/ocaml-ppx/ppx/issues"
depends: [
"ocaml" {>= "4.07" & < "4.08"}
"base" {>= "v0.11.0"}
"dune" {>= "1.8.0"}
"ocaml-compiler-libs" {>= "v0.11.0"}
"ocaml-migrate-parsetree" {>= "1.0.9"}
"ppx_derivers" {>= "1.0"}
"cinaps" {>= "v0.13.0" & with-test}
"ppx_jane" {with-test}
"base_quickcheck" {with-test}
"expect_test_helpers_kernel" {with-test}
"stdio" {>= "v0.11.0"}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocaml-ppx/ppx.git"