-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcodept.opam
39 lines (37 loc) · 1.36 KB
/
codept.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.12.0"
synopsis: "Alternative ocaml dependency analyzer"
description: """
Codept intends to be a dependency solver for OCaml project and an alternative to ocamldep. Compared to ocamldep, codept major features are:
* whole project analysis
* exhaustive warning and error messages
* structured format (s-expression or json) for dependencies
* uniform handling of delayed alias dependencies
* (experimental) full dependencies,
when dependencies up to transitive closure are not enough
Both 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."""
maintainer: ["Florian Angeletti <octa@polychoron.fr>"]
authors: ["Florian Angeletti <octa@polychoron.fr>"]
license: "GPL-3.0-or-later"
homepage: "https://github.com/Octachron/codept"
bug-reports: "https://github.com/Octachron/codept/issues"
depends: [
"dune"
"codept-lib" {= version}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/Octachron/codept.git"