this repo has no description
1opam-version: "2.0" 2maintainer: "jun.furuse@gmail.com" 3authors: "Jun Furuse" 4homepage: "https://gitlab.com/camlspotter/ppx_meta_conv" 5bug-reports: 6 "https://gitlab.com/camlspotter/ppx_meta_conv/-/issues" 7dev-repo: "git+https://gitlab.com/camlspotter/ppx_meta_conv" 8build: ["dune" "build" "-p" name "-j" jobs] 9depends: [ 10 "ocaml" {>= "4.08.0"} 11 "dune" { >= "2.0" } 12 "ppx_deriving" {>= "4.0" & < "5.0"} 13 "spotlib" {>= "4.0.0"} 14 "ppxx" { >= "2.4.0" } 15] 16depopts: [ 17 "tiny_json" 18 "sexplib" 19 "camlon" 20] 21conflicts: [ 22 "tiny_json" {< "1.1.0"} 23 "sexplib" {< "112.24.01"} 24 "camlon" {< "2.0.0"} 25] 26synopsis: "Ppx based type_conv for various tree data formats" 27description: 28 "ppx_meta_conv provides an easier way to auto-generate decoder and encoder between OCaml data types and various tree form data such as JSON, XML, Sexp, etc." 29url { 30 src: 31 "https://gitlab.com/camlspotter/ppx_meta_conv/-/archive/4.0.1/ppx_meta_conv-4.0.1.tar.bz2" 32 checksum: [ 33 "sha256=0e9945064e1057e9dccf586434a399fba4251812d14fc51050b2cc5e76a47c2b" 34 "md5=536ea6b606a1217feccffac4609b5ece" 35 ] 36}