-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
serde_derive.opam
34 lines (34 loc) · 972 Bytes
/
serde_derive.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
34
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Derive-macros for the Serde serialization framework"
description:
"These macros help derive serializers and deserializers for your existing types and provide all the functionality you expect to plug in different data-formats."
maintainer: ["Leandro Ostera <[email protected]>"]
authors: ["Leandro Ostera <[email protected]>"]
license: "MIT"
homepage: "https://github.com/serde-ml/serde"
bug-reports: "https://github.com/serde-ml/serde/issues"
depends: [
"ocaml" {>= "5.1.1"}
"ppx_deriving" {>= "5.2.1"}
"ppxlib" {>= "0.28.0"}
"serde" {= version}
"serde_json" {with-test & = version}
"dune" {>= "3.12"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/serde-ml/serde.git"