this repo has no description
1opam-version: "2.0" 2maintainer: "octachron <octa@polychoron.fr>" 3homepage: "https://github.com/Octachron/codept" 4bug-reports: "https://github.com/Octachron/codept/issues" 5license: "GPL-3.0-only" 6dev-repo: "git+https://github.com/Octachron/codept.git" 7build: [ 8 ["dune" "build" "-p" name "-j" jobs] 9 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 10] 11depends: [ 12 "dune" 13 "menhir" {build} 14 "ocaml" {>="4.03" & < "4.10"} 15] 16synopsis: "Alternative ocaml dependency analyzer" 17description:""" 18Codept intends to be a dependency solver for OCaml project and an alternative to ocamldep. Compared to ocamldep, codept major features are: 19 20 * whole project analysis 21 * exhaustive warning and error messages 22 * structured format (s-expression or json) for dependencies 23 * uniform handling of delayed alias dependencies 24 * (experimental) full dependencies, 25 when dependencies up to transitive closure are not enough 26 27Both ocamldep and codept computes an over-approximation of the dependencies graph of OCaml project. However, codept uses whole project analysis to reduce the number of fictitious dependencies inferred at the project scale, whereas ocamldep is, by design, limited to local file analysis.""" 28url { 29 src: "https://github.com/Octachron/codept/archive/0.10.3.tar.gz" 30 checksum: [ 31 "sha256=86317da53b956670156afd6e65745807841eaf34c99333fe6745b896078eb61e" 32 "md5=84188eac5808667399e6b296b0b9d348" 33 ] 34} 35authors: "octachron <octa@polychoron.fr>"