this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 3synopsis: "Ez_subst is a simple module to perform string substitutions" 4description: """\ 5Ez_subst is a simple module to perform string substitutions, like 6${brace}, $(paren), $[bracket] or $alpha. It provides many options 7to configure the substitutions. 8""" 9authors: ["Fabrice LE FESSANT <fabrice.le_fessant@origin-labs.com>"] 10maintainer: ["Fabrice LE FESSANT <fabrice.le_fessant@origin-labs.com>"] 11homepage: "https://ocamlpro.github.io/ez_subst" 12doc: "https://ocamlpro.github.io/ez_subst/sphinx" 13bug-reports: "https://github.com/ocamlpro/ez_subst/issues" 14dev-repo: "git+https://github.com/ocamlpro/ez_subst.git" 15tags: "org:ocamlpro" 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] 30depends: [ 31 "ocaml" {>= "4.07.0"} 32 "dune" {>= "2.6.0"} 33 "ppx_inline_test" {with-test} 34 "ppx_expect" {with-test} 35 "odoc" {with-doc} 36 "ocamlformat" {with-test} 37] 38 39url { 40 src: "https://github.com/ocamlpro/ez_subst/archive/v0.1.0.tar.gz" 41 checksum: [ "sha256=7c607da89ab133a32b04fe17e9e8462c9fba9faf8e1a08b023628c5d7c6a226f" ] 42}