-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdune-project
48 lines (39 loc) · 986 Bytes
/
dune-project
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
40
41
42
43
44
45
46
47
48
(lang dune 3.14)
(name ppx_deriving_yaml)
(generate_opam_files true)
(source
(github patricoferris/ppx_deriving_yaml))
(license ISC)
(authors "Patrick Ferris")
(maintainers "[email protected]")
(package
(name ppx_deriving_yaml)
(synopsis "Yaml PPX")
(description "Deriving conversion functions to and from yaml for your OCaml types.")
(tags ("ppx" "deriver" "yaml"))
(depends
yaml
(alcotest :with-test)
(mdx (and :with-test (>= 2.4.1)))
(ppx_deriving :with-test) ; dune still puts this in META file ...
(ocaml
(>= 4.08.1))
(ppxlib
(>= 0.25.0))
))
(package
(name ppx_deriving_ezjsonm)
(synopsis "Ezjsonm PPX")
(description "Deriving conversion functions to and from JSON for your OCaml types.")
(tags ("ppx" "deriver" "json"))
(depends
ezjsonm
(alcotest :with-test)
(mdx (and :with-test (>= 2.4.1)))
(ppx_deriving :with-test) ; dune still puts this in META file ...
(ocaml
(>= 4.08.1))
(ppxlib
(>= 0.25.0))
))
(using mdx 0.3)