this repo has no description
1opam-version: "2.0" 2synopsis: "Alternative ocaml dependency analyzer" 3description: """ 4Codept intends to be a dependency solver for OCaml project and an alternative to ocamldep. Compared to ocamldep, codept major features are: 5 6 * whole project analysis 7 * exhaustive warning and error messages 8 * structured format (s-expression or json) for dependencies 9 * uniform handling of delayed alias dependencies 10 * (experimental) full dependencies, 11 when dependencies up to transitive closure are not enough 12 13Both 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.""" 14maintainer: ["Florian Angeletti <octa@polychoron.fr>"] 15authors: ["Florian Angeletti <octa@polychoron.fr>"] 16license: "GPL-3.0-or-later" 17homepage: "https://github.com/Octachron/codept" 18bug-reports: "https://github.com/Octachron/codept/issues" 19depends: [ 20 "dune" {>= "2.8"} 21 "codept-lib" {= version} 22 "odoc" {with-doc} 23] 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36 ] 37] 38dev-repo: "git+https://github.com/Octachron/codept.git" 39x-maintenance-intent: "latest" 40url { 41 src: 42 "https://github.com/Octachron/codept/releases/download/0.12.1/codept-0.12.1.tbz" 43 checksum: [ 44 "sha256=381d300bad1d526d241414d74c670853896547c10efe69f56a1838f00264f69b" 45 "sha512=1517e482a60ed9c76cceff0f64ef73b28a667800fb5bd0a0f142487bbd9c36aadc9534b70de1d261027bd7164dc80ac620d8c04cc94990f627db49e96f786ae5" 46 ] 47} 48x-commit-hash: "d9902f2a11217122a04edb39b5c5d4d540ad18fd"