-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
serde.opam
33 lines (33 loc) · 900 Bytes
/
serde.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A serialization framework for OCaml"
description:
"Serde is a serialization framework for OCaml that runs on the principle of maximum efficiency and user ergonomics while maintaining format flexibility."
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"}
"qcheck" {with-test}
"rio" {>= "0.0.8"}
"spices" {with-test}
"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"