this repo has no description
1opam-version: "2.0"
2synopsis: "A serialization framework for OCaml"
3description:
4 "Serde is a serialization framework for OCaml that runs on the principle of maximum efficiency and user ergonomics while maintaining format flexibility. Internally Serde uses an intermediate language that can be cheaply mapped to and from different target formats like JSON, XML, or S-expressions, which makes Serde good for transcoding data as well."
5maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"]
6authors: ["Leandro Ostera <leandro@abstractmachines.dev>"]
7license: "MIT"
8homepage: "https://github.com/leostera/serde.ml"
9bug-reports: "https://github.com/leostera/serde.ml/issues"
10depends: [
11 "dune" {>= "3.5"}
12 "ocaml" {>= "4.14.0"}
13 "ppx_inline_test" {>= "v0.16.0"}
14 "odoc" {with-doc}
15]
16build: [
17 ["dune" "subst"] {dev}
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "@install"
26 "@runtest" {with-test}
27 "@doc" {with-doc}
28 ]
29]
30dev-repo: "git+https://github.com/leostera/serde.ml.git"
31url {
32 src:
33 "https://github.com/leostera/serde.ml/releases/download/0.0.1/serde-0.0.1.tbz"
34 checksum: [
35 "sha256=14c12871e403a531994acc99ca9d140ea00ea4f6a794d38f01f606eb33615dbd"
36 "sha512=fea87f5067ed2c27b76dcb0ff96c6d39c939f62aecced8cd19790e20af794fbfaa99d727c04461e42ab115c97f39d0fe68f93f016ed2cb1471d8cc0d55b19b10"
37 ]
38}
39x-commit-hash: "087acdda381b6057d68f72dd86e3662f855dc9a1"