forked from janestreet/ppx_hash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathppx_hash.opam
More file actions
25 lines (25 loc) · 831 Bytes
/
ppx_hash.opam
File metadata and controls
25 lines (25 loc) · 831 Bytes
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
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/ppx_hash"
bug-reports: "https://github.com/janestreet/ppx_hash/issues"
dev-repo: "git+https://github.com/janestreet/ppx_hash.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_hash/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "5.1.0"}
"ppx_compare"
"ppx_sexp_conv"
"ppxlib_jane"
"dune" {>= "3.17.0"}
"ocaml-compiler-libs" {>= "v0.11.0"}
"ppxlib" {>= "0.33.0" & < "0.36.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "A ppx rewriter that generates hash functions from type expressions and definitions"
description: "
Part of the Jane Street's PPX rewriters collection.
"