-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune-project
More file actions
35 lines (25 loc) · 781 Bytes
/
Copy pathdune-project
File metadata and controls
35 lines (25 loc) · 781 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
26
27
28
29
30
31
32
33
34
(lang dune 3.11)
(name ppx_deriving_decoders)
(generate_opam_files true)
(version 1.0)
(source
(github benbellick/ppx_deriving_decoders))
(authors "Ben Bellick <benbellick@pm.me>")
(maintainers "Ben Bellick <benbellick@pm.me>")
(license MIT)
(documentation https://github.com/benbellick/ppx_deriving_decoders)
(package
(name ppx_deriving_decoders)
(synopsis "Deriving Decoders using PPX")
(description "Using mattjbray/ocaml-decoders, use a ppx to automatically \
generate instances of a decoder for a particular type using PPX.")
(depends
(ocaml (>= 4.08.0))
dune
(ppxlib (>= 0.20.0))
(decoders (>= 0.5.0))
(containers (>= 2.8))
(decoders-yojson :with-test)
(ppx_inline_test :with-test))
(tags
("decoders" "decoding" "json" "ppx")))